Initial commit

This commit is contained in:
Elias Projahn 2020-05-21 20:25:25 +02:00
commit 4be8aa8ff5
47 changed files with 1577 additions and 0 deletions

12
lib/main.dart Normal file
View file

@ -0,0 +1,12 @@
import 'package:flutter/widgets.dart';
import 'backend.dart';
import 'app.dart';
void main() {
runApp(
MemorBackend(
child: MemorApp(),
),
);
}