0

In flutter web, I am trying to divide my screen into 2 parts. One would be static and 1 would be loaded dynamically. Is there a way to apply navigation only in 1 section instead of on changing the entire page.

So based on the values selected in 1st section, 2nd section can show a new Page.

  • Check this out,it answered most of my questions https://stackoverflow.com/questions/66690100/navigate-part-of-screen-from-drawer – user14624595 Apr 14 '21 at 05:31

1 Answers1

1

You can use another Navigator in your dynamic section.

Consult the Flutter cookbook for detailed instructions.

hacker1024
  • 3,186
  • 1
  • 11
  • 31