mirror of
https://github.com/lucavenir/go_router_riverpod.git
synced 2025-08-06 14:59:53 +08:00
16 lines
320 B
Dart
16 lines
320 B
Dart
import 'package:flutter/material.dart';
|
|
|
|
class LoadingSpinner extends StatelessWidget {
|
|
const LoadingSpinner({super.key});
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return const SizedBox.square(
|
|
dimension: 16,
|
|
child: CircularProgressIndicator(
|
|
strokeWidth: 1.5,
|
|
),
|
|
);
|
|
}
|
|
}
|