From 8e9d57c5cb9e1c56b624555d0d25846fc6fe4214 Mon Sep 17 00:00:00 2001 From: Nicholas Kalar Date: Tue, 25 Nov 2025 23:20:57 -0500 Subject: [PATCH] formatting changes --- src/models/MenuBar.py | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/src/models/MenuBar.py b/src/models/MenuBar.py index 1b0c780..1c1d5ea 100644 --- a/src/models/MenuBar.py +++ b/src/models/MenuBar.py @@ -2,15 +2,17 @@ import flet as ft def create_menubar(page: ft.Page, selector, builder): menu = ft.AppBar( - title=ft.Text("Meal Picker"), - bgcolor=ft.Colors.GREEN_700, + title=ft.Text("NoteNook"), + bgcolor='#CC8B65', center_title=False, actions=[ ft.PopupMenuButton( items=[ ft.PopupMenuItem(text="Meal Selector", on_click=lambda e: selector(page)), ft.PopupMenuItem(text="Meal Builder", on_click=lambda e: builder(page)), - ] + ], + icon = ft.Icons.FASTFOOD_OUTLINED, + icon_color = '#E3DCD2' ) ] )