TIF_E41201615/lib/components/skeleton/shimmering_circle_skeleton....

21 lines
485 B
Dart

import 'package:flutter/material.dart';
import '../../styles/colors.dart';
class ShimmeringCircleSkeleton extends StatelessWidget {
const ShimmeringCircleSkeleton({Key? key, this.size = 24}) : super(key: key);
final double? size;
@override
Widget build(BuildContext context) {
return Container(
height: size,
width: size,
decoration: const BoxDecoration(
color: AppColors.primaryLightGrey,
shape: BoxShape.circle,
),
);
}
}