SuicaLondon

Results 8 comments of SuicaLondon

In this duplicate issue #155199, I propose that we refrain from directly using the `onTap` property. There are two reasons behind this suggestion. 1. it may cause some test cases...

> (The flag should probably be something like `enableSplash`, since putting "disabled" in the name goes against the [**avoid double negatives**](https://github.com/flutter/flutter/blob/master/docs/contributing/Style-guide-for-Flutter-repo.md#avoid-double-negatives-in-apis) guideline.) > I agree with you that the name...

> I too am very much hoping for union types, but fortunately I don't think they're necessary here. > > I was thinking something along the lines of > >...

> > we already have a loop in the `CarouselView` widget, and we may need to define another two loops when passing the parameter. > > I don't think any...

> You'll also want to remove trailing spaces Thank you very much, I have removed all trailing spaces.

Same issue happened on Android 14 with return gesture. If we delay the authentication on the initState with `Future.delay` or `SchedulerBinding.instance.addPostFrameCallback`, this issue will happen too.

I think that is not related to #153498, because that issue is normal behavior of go_router. One thing you should do first is to put your log into your builder...

As I understand it, you want to do that push three routes ```Dart const routes = ['page_one', 'page_two', 'page_three'] ```` pop() ``` const routes = ['page_one', 'page_two'] ``` Then you...