initialized menu page

This commit is contained in:
Mohammad Salameh
2024-02-21 16:39:16 +03:00
parent d903849e92
commit c95a9c7817
9 changed files with 231 additions and 7 deletions

View File

@ -0,0 +1,9 @@
class ListItemModel {
final String? icon;
final String? label;
ListItemModel({
this.icon,
this.label,
});
}

View File

@ -0,0 +1,11 @@
import 'list_item_model.dart';
class MenuListModel {
final String? label;
final List<ListItemModel?>? listItems;
MenuListModel({
this.label,
this.listItems,
});
}