loading_widget.dart 361 B

123456789101112131415
  1. import 'package:flutter/cupertino.dart';
  2. class EnteLoadingWidget extends StatelessWidget {
  3. const EnteLoadingWidget({Key key}) : super(key: key);
  4. @override
  5. Widget build(BuildContext context) {
  6. return Center(
  7. child: SizedBox.fromSize(
  8. size: const Size.square(30),
  9. child: const CupertinoActivityIndicator(),
  10. ),
  11. );
  12. }
  13. }