You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
fluffychat/lib/views/loading_view.dart

13 lines
243 B
Dart

import 'package:flutter/material.dart';
class LoadingView extends StatelessWidget {
@override
Widget build(BuildContext context) {
5 years ago
return Scaffold(
body: Center(
child: CircularProgressIndicator(),
),
);
}
}