Nazareno Cavazzon

Results 41 comments of Nazareno Cavazzon

Yep, didn't saw it hahahaha, I'll undo it

I have also a question, do I need to update the flutter version or make a document like [this one](https://docs.google.com/document/d/1bcPV8yNAETmlxTFTMpO_JcJ7-yMoF8qaCPa884hFmXA/edit?usp=drivesdk&resourcekey=0-73tg8sZOVf0YXBmz-MLwQw) explaining the changes and the tests I added?

@justinmc I reverted the formatting, let me know if you need something

I like more the enum approach, it makes more sense, thanks for the review, I'll make the changes ASAP

@justinmc I made the alignPanAxis and Enum.

I updated the PR, so now instead of doing: ```dart final result = await context.pushNamedAsync(routeName) as bool?; context.pop(someValue); ``` you can do: ```dart final result = await context.pushNamedAsync(routeName); context.pop(someValue); ```...

@giallon I made some changes