add setting

This commit is contained in:
NewTab
2022-01-17 20:52:22 +08:00
parent f8db860d56
commit 917425c5de
12 changed files with 109 additions and 78 deletions

View File

@@ -49,6 +49,7 @@ class _HomePageState extends ConsumerState<HomePage> {
child: Icon(
CupertinoIcons.add,
size: 20,
color: Colors.white,
),
),
),
@@ -68,6 +69,7 @@ class _HomePageState extends ConsumerState<HomePage> {
child: Icon(
CupertinoIcons.add,
size: 20,
color: Colors.white,
),
),
),
@@ -82,7 +84,13 @@ class _HomePageState extends ConsumerState<HomePage> {
horizontal: 15,
),
child: Center(
child: Text("编辑"),
child: Text(
"编辑",
style: TextStyle(
color: Colors.white,
fontSize: 16,
),
),
),
),
));