3

Expected View:

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.

Jahidul Islam
  • 11,435
  • 3
  • 17
  • 38
Chanaka N. Bandara
  • 247
  • 1
  • 3
  • 10

1 Answers1

2

you can use a combination of BottomNavigationBar (portrait) and NavigationRail (landscape)

navigationrail

and for rotating widget in NavigationRail, use RotateBox

RotatedBox(
  quarterTurns: -1,
Jim
  • 6,928
  • 1
  • 7
  • 18