fluffychat/lib/views/empty_page.dart

13 lines
272 B
Dart
Raw Normal View History

2020-12-06 11:51:40 +00:00
import 'package:flutter/material.dart';
class EmptyPage extends StatelessWidget {
@override
Widget build(BuildContext context) {
return Scaffold(
body: Center(
2020-12-09 09:55:37 +00:00
child: Image.asset('assets/favicon.png', width: 100, height: 100),
2020-12-06 11:51:40 +00:00
),
);
}
}