mirror of
https://gitlab.com/famedly/fluffychat.git
synced 2024-11-02 18:19:30 +01:00
13 lines
272 B
Dart
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),
|
|
),
|
|
);
|
|
}
|
|
}
|