Diego Velásquez

Results 119 comments of Diego Velásquez

I was testing the PR, looks like there is an issue related with the lowPassFilter, this is a basic example to reproduce the issue : ``` class _RotationLayoutState extends State...

> I found a way to prevent this crash. Add [WidgetsBindingObserver](https://stackoverflow.com/a/49870276/8812901) to your Widget and implement `didChangeAppLifecycleState(AppLifecycleState state)` to handle the ShakeDetector subscription. It would look something like this: >...

hey @deven98 , take a look at this thread, maybe it could help :https://github.com/flutter/flutter/issues/96901#issuecomment-1053114107

Hey, thanks for the contribution, I have a better idea, what about keeping the files as it's(because people will find easier the code when they search on the repo) but...

Do you mean this? https://github.com/diegoveloper/flutter_percent_indicator/blob/master/lib/linear_percent_indicator.dart#L49 On Mon, Oct 3, 2022, 1:55 AM Ashwin Ramakrishnan ***@***.***> wrote: > Is it possible to bend the LInearPercentIndicator widget to a > semi-circular shape?...

I think you don't need ``` SizedBox( height: MediaQuery.of(context).size.height, width: MediaQuery.of(context).size.width, child: Form( ``` and use `KeyboardActions` on top of your `Column`, check the examples of this package.

Did you run the examples, what's the result? On Tue, Oct 18, 2022, 6:03 AM bahadir arslan ***@***.***> wrote: > Unfortunately it didn't help currently it is like below >...

Did you try using your own `PhotoViewController` ? ```dart class _YourPhotoViewController extends PhotoViewController { @override void updateMultiple({Offset? position, double? scale, double? rotation, Offset? rotationFocusPoint}) { super.updateMultiple( position: position, scale: scale?.clamp(your_min_scale,...

yeah please, try to reproduce it in a minimal sample code in order to fix that , thank you

Umar, you don't need to fork, just point the package to his github url and branch name (in pubspec.yml) , try and see if the bug still exists. Thanks On...