build_app

This commit is contained in:
2026-09-17 05:29:16 +00:00
parent 570805ebe4
commit 213e24fc06
13 changed files with 1625 additions and 0 deletions
@@ -1,3 +1,5 @@
import '../../Entity/wireframes/Hello/Hello_entity_list_screen.dart';
@@ -344,6 +346,24 @@ class _TabbedLayoutComponentState extends State<TabbedLayoutComponent> {
),
// NEW MENU
PopupMenuItem<String>(
//value: 'Option 1',
child: Text(
'Hello',
style: AppStyle.txtGilroySemiBold16,
),
onTap: () {
Navigator.push(
context,
MaterialPageRoute(
builder: (context) =>
hello_entity_list_screen(), //go to get all entity
),
);
// Add your logic for menu 2 here
},
),