Expected View:
I need to place flutter BottomNavigationBar in left side of the screen in landscape mode. If this is impossible to do, please mention another alternative way if you know.
Expected View:
I need to place flutter BottomNavigationBar in left side of the screen in landscape mode. If this is impossible to do, please mention another alternative way if you know.
you can use a combination of BottomNavigationBar (portrait) and NavigationRail (landscape)
and for rotating widget in NavigationRail, use RotateBox
RotatedBox(
quarterTurns: -1,