mirror of
https://github.com/johrpan/memor.git
synced 2025-10-28 19:27:25 +01:00
Initial commit
This commit is contained in:
commit
4be8aa8ff5
47 changed files with 1577 additions and 0 deletions
27
lib/app.dart
Normal file
27
lib/app.dart
Normal 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(),
|
||||
);
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue