build_app

This commit is contained in:
2026-09-19 03:57:48 +00:00
parent e497faa322
commit 8a00692902
22 changed files with 2762 additions and 0 deletions
@@ -1,3 +1,7 @@
import '../../Entity/wireframes/World/World_entity_list_screen.dart';
import '../../Entity/wireframes/Hello/Hello_entity_list_screen.dart';
@@ -344,6 +348,42 @@ class _TabbedLayoutComponentState extends State<TabbedLayoutComponent> {
),
// NEW MENU
PopupMenuItem<String>(
//value: 'Option 1',
child: Text(
'World',
style: AppStyle.txtGilroySemiBold16,
),
onTap: () {
Navigator.push(
context,
MaterialPageRoute(
builder: (context) =>
world_entity_list_screen(), //go to get all entity
),
);
// Add your logic for menu 2 here
},
),
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
},
),