mirror of
https://github.com/jonasbark/swiftcontrol.git
synced 2026-02-18 23:41:48 +01:00
11 lines
308 B
Dart
11 lines
308 B
Dart
import 'package:flutter/material.dart';
|
|
|
|
class SmallProgressIndicator extends StatelessWidget {
|
|
const SmallProgressIndicator({super.key});
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return Center(child: SizedBox(height: 12, width: 12, child: CircularProgressIndicator(strokeWidth: 2)));
|
|
}
|
|
}
|