build_app
This commit is contained in:
+40
@@ -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
|
||||
},
|
||||
),
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user