as the title, i tested my app on multiple devices and it looks perfect except if the device is API level 35 (Android Version 15)
my navbar is as simple as this :
@override
Widget build(BuildContext context) {
return Scaffold(
bottomNavigationBar: MyGNav(changePage: changePage, selectedIndex: _currentIndex),
body: pages[_currentIndex],
);
}
I'm using the latest vesion of the package and also targeting API level 35.
Note: this error isn't happening on the emulator that is also built on API level 35, but in a real device this is the case
as the title, i tested my app on multiple devices and it looks perfect except if the device is API level 35 (Android Version 15)
my navbar is as simple as this :
I'm using the latest vesion of the package and also targeting API level 35.
Note: this error isn't happening on the emulator that is also built on API level 35, but in a real device this is the case