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

27
lib/app.dart Normal file
View file

@ -0,0 +1,27 @@
import 'package:flutter/material.dart';
import 'home_screen.dart';
/// A simple reminder app.
///
/// This has to be wrapped by a MemorBackend widget.
class MemorApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MaterialApp(
theme: ThemeData(
primaryColor: Colors.black,
accentColor: Colors.amber,
textSelectionColor: Colors.amber,
cursorColor: Colors.amber,
textSelectionHandleColor: Colors.amber,
colorScheme: ColorScheme.light(
primary: Colors.black,
secondary: Colors.amber,
),
fontFamily: 'Libertinus Sans',
),
home: HomeScreen(),
);
}
}