feat: Implement discover groups page

This commit is contained in:
Christian Pauly 2020-12-06 12:51:40 +01:00
commit d0ae048a83
8 changed files with 443 additions and 218 deletions

12
lib/views/empty_page.dart Normal file
View file

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