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?