refactor: rename UI to View and MVC login page

This commit is contained in:
Christian Pauly 2021-05-22 09:08:23 +02:00
commit b01d7d0000
48 changed files with 146 additions and 125 deletions

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/favicon.png', width: 100, height: 100),
),
);
}
}