20 lines
421 B
20 lines
421 B
import 'package:flutter/material.dart';
|
|
import 'package:flutter_screenutil/flutter_screenutil.dart';
|
|
|
|
BottomNavigationBarItem asNavigationItem(
|
|
String path1, String path2, String title) {
|
|
return BottomNavigationBarItem(
|
|
icon: Image.asset(
|
|
path1,
|
|
height: 24.w,
|
|
width: 24.w,
|
|
),
|
|
activeIcon: Image.asset(
|
|
path2,
|
|
height: 24.w,
|
|
width: 24.w,
|
|
),
|
|
label: title,
|
|
);
|
|
}
|