2
0
mirror of https://gitlab.com/famedly/fluffychat.git synced 2025-06-22 10:37:24 +02:00
2020-12-09 10:55:37 +01:00

13 lines
272 B
Dart

import 'package:flutter/material.dart';
class EmptyPage extends StatelessWidget {
@override
Widget build(BuildContext context) {
return Scaffold(
body: Center(
child: Image.asset('assets/favicon.png', width: 100, height: 100),
),
);
}
}