Sandro Lovnički

Results 75 comments of Sandro Lovnički

Hi again @johnpryan and thanks for creating an issue! I can confirm this bug. The problem is because inner beamer doesn't check the guards of outer beamer (its parent) and...

Hi @davemg3 :wave: Thanks for creating an issue and sorry for a late response. Do you mean something like [this example](https://github.com/slovnicki/beamer/tree/master/examples/nested_navigation) (gif below) ![example-nested-navigation](https://user-images.githubusercontent.com/29288059/147968598-4fb93bf3-8172-49ce-84b1-ca0ec3168a15.gif)

@davemg3 I'm not sure what you mean by "blink", but setting different transition delegate on certain `BeamerDelegate`s should help. For example; ``` transitionDelegate: NoAnimationTransitionDelegate(), ``` Does this answer your question?...

@LegendAF I can reproduce this and it seems that the exact issue is the line ```dart final testingContext = context.canBeamBack; ``` which calls `Beamer.of(context)`. The rest of the `BeamGuard` configuration...

I'm curious, is it still happening in latest `v0.11`?

@cedvdb I like the idea. We should work on that when I get back from the vacation

Hey @saibotma Beamer also has that 🙂 It is the `updateListenable` property of `BeamerDelegate` which will trigger `Beamer.of(context).update()` when it notifies, which will rerun the guards and beam appropriately. Indeed,...

Hey @bambinoua Thanks for creating a separate issue for this. > What I need is if I typed some secured (guarded) URL I need to be redirected to login route...

@bambinoua Hm, the ` Beamer.of(context).update();` really should re-run the guards, regardless of any configuration :thinking:

Hi @Fayiz-A Thanks for creating an issue and thank you for the kind words. The behavior you describe is intended, **BUT** `pop` should work in the latter scenario :thinking: This...