side_menu_data.dart 491 B

12345678910111213
  1. import 'package:fitness_dashboard_ui/model/menu_model.dart';
  2. import 'package:flutter/material.dart';
  3. class SideMenuData {
  4. final menu = const <MenuModel>[
  5. MenuModel(icon: Icons.home, title: 'Dashboard'),
  6. MenuModel(icon: Icons.person, title: 'Profile'),
  7. MenuModel(icon: Icons.run_circle, title: 'Exersice'),
  8. MenuModel(icon: Icons.settings, title: 'Settings'),
  9. MenuModel(icon: Icons.history, title: 'History'),
  10. MenuModel(icon: Icons.logout, title: 'SignOut'),
  11. ];
  12. }