15 lines
361 B
Dart
15 lines
361 B
Dart
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(),
|
|
),
|
|
);
|
|
}
|
|
}
|