Added Marianum Message pdf reader and backend

This commit is contained in:
2023-05-30 21:08:11 +02:00
parent ba90556e69
commit d71f0d3339
16 changed files with 343 additions and 12 deletions

View File

@ -18,6 +18,7 @@ import 'data/chatList/chatListProps.dart';
import 'data/chatList/chatProps.dart';
import 'data/accountModel.dart';
import 'data/files/filesProps.dart';
import 'data/message/messageProps.dart';
Future<void> main() async {
WidgetsFlutterBinding.ensureInitialized();
@ -38,6 +39,8 @@ Future<void> main() async {
ChangeNotifierProvider(create: (context) => ChatListProps()),
ChangeNotifierProvider(create: (context) => ChatProps()),
ChangeNotifierProvider(create: (context) => FilesProps()),
ChangeNotifierProvider(create: (context) => MessageProps()),
],
child: const Main(),
)