Compare commits
3 Commits
de4f8306d7
...
main
Author | SHA1 | Date | |
---|---|---|---|
70c26be8e3 | |||
b177b6317e | |||
3c52239efc |
@ -1 +1,4 @@
|
||||
include: package:flutter_lints/flutter.yaml
|
||||
analyzer:
|
||||
errors:
|
||||
unreachable_switch_default: ignore
|
||||
|
@ -1,5 +1,9 @@
|
||||
// Flutter
|
||||
import 'package:flutter/material.dart';
|
||||
|
||||
// Local
|
||||
import '/widgets/cards.dart';
|
||||
|
||||
/// TODO:
|
||||
/// - Export DB (JSON?)
|
||||
/// - Import DB (JSON?)
|
||||
@ -14,8 +18,14 @@ class SettingsPage extends StatelessWidget {
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
return Center(
|
||||
child: Text(
|
||||
"No settings yet. :)",
|
||||
child: Column(
|
||||
mainAxisSize: MainAxisSize.max,
|
||||
children: [
|
||||
TitleCard(title: "Settings"),
|
||||
Text(
|
||||
"No settings exist yet. :)",
|
||||
),
|
||||
],
|
||||
),
|
||||
);
|
||||
}
|
||||
|
Reference in New Issue
Block a user