baligh_dashboard/lib/widgets/small_spinner.dart
Abdullah Salah cf9784f468 First Commit
2024-12-26 09:10:35 +03:00

20 lines
388 B
Dart

import 'package:flutter/material.dart';
class SmallSpinner extends StatelessWidget {
final Color? color;
const SmallSpinner({super.key, this.color});
@override
Widget build(BuildContext context) {
return SizedBox(
width: 20,
height: 20,
child: CircularProgressIndicator(
strokeWidth: 3,
color: color ?? Colors.white,
),
);
}
}