iq/lib/app/modules/home/widgets/shimmer_text.dart

20 lines
377 B
Dart
Raw Permalink Normal View History

2023-09-11 12:11:35 +00:00
import 'package:flutter/material.dart';
class ShimmerText extends StatelessWidget {
const ShimmerText({
Key? key,
}) : super(key: key);
@override
Widget build(BuildContext context) {
return Container(
height: 6,
width: 70,
decoration: const BoxDecoration(
color: Colors.grey,
shape: BoxShape.rectangle,
),
);
}
}