Omar Khaled
Omar Khaled
Yes it is a cool feature to have custom tooltip widget, I can't even add simple elevation to my tooltip 😕.
Any updates 🥲
I see now why Flutter disables swipe to go back when using the WillPopScope widget, hope this fixes it without disabling the gesture.
lots of dependencies are depending on Web 1.0.0 now, lets please get this merged!
Hoping this can be reconsidered, as a native "Copy Diff" feature would be a significant improvement.
This plugin is already using the v2 Android embedding by implementing FlutterPlugin with onAttachedToEngine and onDetachedFromEngine. The main migration step is to remove any leftover references to the old v1...
Hi @chunhtai, This PR introduces a top-level onEnter callback, addressing critical gap in go_router’s handling of deep links and redirect customizations. It allows developers to intercept routes, block navigation, or...
Hi @chunhtai, Following up on this PR. I've updated the implementation to: 1. Enhance OnEnter signature to include current and next state: ```dart typedef OnEnter = bool Function( BuildContext context,...
Hi @chunhtai, I've expanded the `OnEnter` callback again to include a `GoRouter` parameter to handle early-stage navigation. This addition addresses an edge case where navigation is needed before the `InheritedGoRouter`...
Hi @cedvdb, The callback signature is indeed straightforward. The fallback router isn’t ideal in that it isn’t coming directly from the widget tree (via GoRouter.of(context)), but it serves as a...