fluffychat/lib/views/empty_page.dart

13 lines
272 B
Dart
Raw Normal View History

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