Tom Gilder

Results 79 comments of Tom Gilder

Hello! Thank you for the amazing package. Just wanted to mention that performance with Safari on macOS is pretty terrible, I think due to this issue: https://github.com/flutter/flutter/issues/96869 Scrolling around on...

I'm not trying to use it with an image; it happens with any usage of flutter_map in Safari, just from it loading map tiles. It's a Flutter issue, unless flutter_map...

Currently trying to develop an API for this, here's the current state for a bottom sheet page flow that looks like this: https://user-images.githubusercontent.com/756862/120100640-6c152d80-c14a-11eb-95f4-4a802ff6c8f2.mp4 Route map: ```dart '/flow': (_) => FlowPage(...

Another use case is that you _do_ want to use Routemaster's navigation but _do not_ want the URL to change throughout the flow. So the URL might internally change to...

> Super cool stuff Tom! API looks really clean , thanks for taking my suggestion! Thank you! > If I may, the `FlowPage.of(context).pushNext();` and `paths` works well for linear flows...

With the URL masking, I'm thinking of just borrowing from Dart: so a `_` prefix will make that part of the route private. ```dart '/bottom-sheet': (_) { return FlowPage( pageBuilder:...

@nikitadol currently working on private routes which is nearly done: #178, will move on to getting this finished after that. There are already multiple ways you could implement a flow...

Private routes is now merged. The last remaining part of this is introducing more flexible routing maps, including relative paths. API design is being done over at this issue: *...

Hello - you can access `Navigator.of(context)` to access everything from Navigator. Wouldn't just calling `replace` once do what you need? I'm not really understanding what functionality is missing here...

I would love to, but it has to be a string in order to support web URLs, unless you have a suggestion to work around that?