0

as I'm coding some app I was wondering if there's any cheat sheet explaining navigation and routing options I have and when should I use the specific one (for which usecase its the best solution)?

For example I'm creating a form, when I press the button I need to load a list of items (Listview) from which I will chose one item and go back to the form. This list should cover all screen (something like full screen modal I guess)

Im not sure what should I use, whether MaterialPageRoute, ModalRoute or maybe somethig different like dialog?

Is there any good source to learn besides of reading documentation?

ink
  • 519
  • 6
  • 19
Bartosz Jarosz
  • 188
  • 1
  • 5

1 Answers1

0

You can read this for push and pop concepts. An example related to that.

This example is for routing.

See this and this for complete understanding of Routing and Navigation

Muhammad Noman
  • 1,344
  • 1
  • 14
  • 28
  • I've seen this before, looking more for something like short comparison between routing methods, but thanks for ansert anyway – Bartosz Jarosz Jul 26 '19 at 08:07