@override
Widget build(BuildContext context) {
return Scaffold(
backgroundColor: tdWhite,
bottomNavigationBar: Padding(
padding: const EdgeInsets.all(8),
child: ClipRRect(
borderRadius: BorderRadius.circular(100),
child: BottomNavigationBar(
type: BottomNavigationBarType.fixed,
backgroundColor: tdWhiteNav,
showSelectedLabels: false,
showUnselectedLabels: false,
onTap: (int newIndex) {},
items:const [
BottomNavigationBarItem(
icon: Icon(MyFlutterApp.home, color: tdIconColor),
label: '',
),
BottomNavigationBarItem(
icon: Icon(MyFlutterApp.ticket, color: tdIconColor, size: 40),
label: '',
),
BottomNavigationBarItem(
icon: Icon(MyFlutterApp.group_168, color: tdBlack, size: 40),
label: '',
),
BottomNavigationBarItem(
icon: Icon(MyFlutterApp.profile, color: tdIconColor),
label: '',
),
it take more height in many phone like iphone,s23 samsung etc…I try to put Container or SizeBox with height but nothing change.any one have a solution for it?.enter image description here