Add readme

Remove development color swatches page
This commit is contained in:
Alexander Laevens
2022-12-01 01:34:31 -07:00
parent 7fa947b1d7
commit 31c4505e49
7 changed files with 75 additions and 33 deletions

View File

@@ -18,7 +18,7 @@ class _HomeScreenState extends State<HomeScreen> {
"Shopping List",
"Saved Recipes",
"Your Profile",
"Color Debug"
// "Color Debug"
];
@override
@@ -27,7 +27,7 @@ class _HomeScreenState extends State<HomeScreen> {
const ListPage(),
const RecipesPage(),
const ProfilePage(),
const ColorPage()
// const ColorPage()
];
super.initState();
}
@@ -58,11 +58,11 @@ class _HomeScreenState extends State<HomeScreen> {
label: "Profile",
backgroundColor: Theme.of(context).colorScheme.secondaryContainer,
),
BottomNavigationBarItem(
icon: const Icon(Icons.grid_3x3),
label: "Colors",
backgroundColor: Theme.of(context).colorScheme.secondaryContainer,
)
// BottomNavigationBarItem(
// icon: const Icon(Icons.grid_3x3),
// label: "Colors",
// backgroundColor: Theme.of(context).colorScheme.secondaryContainer,
// )
],
currentIndex: _selectedPage,
onTap: (value) {