Kalle Johansson

Results 13 comments of Kalle Johansson

I had a similar issue which I managed to solve when I was trying to wait for both futures simultaneously. ``` final List setupFutures = [ RemoteConfig.instance.setConfigSettings( RemoteConfigSettings( fetchTimeout: Duration(seconds:...

I don't think it's the permission handler's responsibility to call `presentLimitedLibraryPicker`. It should be done by your image picker. If you are building your own you can use the library...

My view is that this is something you do after you have been granted limited permission to the photo library. From the docs: _If the user enabled limited library access...

> > I resolved the issue using `PhotoManager.setIgnorePermissionCheck(true);`. Thank. > > @alejandrogiubel I've tried doing like this, is this the right way? > > ```dart > await PhotoManager.setIgnorePermissionCheck(true); > List...

I can also confirm that the issue is back in later Flutter versions. @dnfield Do you know if this is currently being worked on?

@e-e I'm doing the same thing. I'm solving this by wrapping the non movable widgets in: ``` GestureDetector( onLongPress: () {}, // Override onLongPress to make item unmovable. child: ......

@diickens Yes, my solution was to enforce that in `onReorder`. It's quite easy if you just want to ensure that tiles can't be moved beyond the unmovable tile like in...

Just as @jesus-mg-ios I also see an empty Logs & Breadcrumbs tab for some error reports that should have data. Can this issue be reopened?

Thanks for taking the time to look at this @justinmc! I added a test that verifies that the sheet follows the given `snapAnimationCurve` during snapping. Let me know if I...