|
- import 'package:shimmer/shimmer.dart';
- import 'package:flutter/material.dart';
-
- class CounponSkeleton extends StatelessWidget {
- @override
- Widget build(BuildContext context) {
- return Container(
- margin: const EdgeInsets.only(left: 12.5, right: 12.5, top: 12),
- width: double.infinity,
- height: 70,
- child: _shimmerWidget(width: double.infinity, height: 65, radius: 7.5),
- );
- }
-
- Widget _shimmerWidget({double width, double height, double radius = 0}) {
- return Shimmer.fromColors(
- baseColor: Colors.grey[300],
- highlightColor: Colors.grey[100],
- child: Container(
- width: width,
- height: height,
- decoration: BoxDecoration(color: Colors.white, borderRadius: BorderRadius.circular(radius)),
- ),
- );
- }
- }
|