David Chopin

Results 31 comments of David Chopin

I can make a PR on this repo if it will be merged in.

> I think there are two steps to fix this issue > > 1. https://github.com/flutter/packages/pull/4392/files > This adds the ability to know whether a GoRouteState is a deeplink (by checking...

@chunhtai I was able to get back a `GoRouteState.uri.host` and `GoRouteState.uri.scheme` in our `redirect` with, seemingly, no side-effects by making the following changes: - [`parser.dart`](https://github.com/flutter/packages/blob/d7dee796f3c85f6716191493606e727e744de95a/packages/go_router/lib/src/parser.dart): [`configuration.findMatch(routeInformation.location!, extra: state.extra);`](https://github.com/flutter/packages/blob/d7dee796f3c85f6716191493606e727e744de95a/packages/go_router/lib/src/parser.dart#L90) changes to...

@chuntai So, we would need a PR that: 1. Upgrades go_router's min. flutter version to >=3.12.0 (so that `RouteInformation.uri` exists) 2. Implements my aforementioned changes which make use of `RouteInformation.uri`...

PR is open @chunhtai: https://github.com/flutter/packages/pull/5742

> We should not merge this until we figure out this how to support imperative API moving forward > [flutter/flutter#99112](https://github.com/flutter/flutter/issues/99112). Closing for now So we can't get async `push` and...

The only way I could get this to work in a way where I can confirm whether enable/disable message was invoked was to do [this](https://github.com/lichess-org/mobile/pull/2275/files#diff-f3c056fc2241063e75e74070f3c6aad46a1722210e8414c2dc87cb6ded5dce72R795-R838). Basically, you need to be...

@julianfalcionelli Sorry, just now seeing your comment. I don't really maintain this project, just made this and a couple of other PRs. That being said, it does seem that [the...