You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
403B

  1. import 'package:flutter/material.dart';
  2. class BottomLoader extends StatelessWidget {
  3. @override
  4. Widget build(BuildContext context) {
  5. return Container(
  6. alignment: Alignment.center,
  7. child: Center(
  8. child: SizedBox(
  9. width: 33,
  10. height: 33,
  11. child: CircularProgressIndicator(
  12. strokeWidth: 1.5,
  13. ),
  14. ),
  15. ),
  16. );
  17. }
  18. }