loading.dart 388 B

1234567891011121314151617
  1. import 'package:flutter/material.dart';
  2. import 'package:flutter_spinkit/flutter_spinkit.dart';
  3. class Loading extends StatelessWidget {
  4. @override
  5. Widget build(BuildContext context) {
  6. return Container(
  7. color: Colors.brown[100],
  8. child: const Center(
  9. child: SpinKitChasingDots(
  10. color: Colors.brown,
  11. size: 50.0,
  12. ),
  13. ),
  14. );
  15. }
  16. }