123456789101112131415 |
- import 'package:flutter/cupertino.dart';
- class EnteLoadingWidget extends StatelessWidget {
- const EnteLoadingWidget({Key key}) : super(key: key);
- @override
- Widget build(BuildContext context) {
- return Center(
- child: SizedBox.fromSize(
- size: const Size.square(30),
- child: const CupertinoActivityIndicator(),
- ),
- );
- }
- }
|