baligh/lib/widgets/small_spinner.dart
Abdullah Salah e3ea8335d1 First Commit
2024-12-26 09:05:13 +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,
),
);
}
}