mobile_skt/lib/models/app_bottom_nav_item.dart

10 lines
213 B
Dart
Raw Normal View History

import 'package:flutter/cupertino.dart';
class AppBottomNavItem {
String? icon;
String? activeIcon;
String? label;
Widget? page;
AppBottomNavItem({this.icon, this.activeIcon, this.label, this.page});
}