maRci002

Results 124 comments of maRci002

Wrap your animation Widget inside [RepaintBoundary](https://api.flutter.dev/flutter/widgets/RepaintBoundary-class.html). It prevents to repaint the entire page on every frame.

> Do you mean to wrap the `DelayedSizeOpacityAnimation` in `RepaintBoundary` widget? Yes. > My problem was with the `SizeTransition` widget as it should do these performance optimizations automatically Flutter does...

I don't know what you want to achive, maybe when loading is done you want to hide `CircularProgressIndicator`? Usually you just want to replace `CircularProgressIndicator` in your widget tree otherwise...

I think now I understand what you want, basicly you want to avoid repainting when `SizeTransition`'s value is 0 which happens when `AnimationController.status == AnimationStatus.dismissed` _The animation is stopped at...

I think `member == 'BlocBase.addError'` won't work properly if code is [obfuscated](https://docs.flutter.dev/deployment/obfuscate).

@bparrishMines I've added `// ignore: missing_enum_constant_in_switch` to avoid analyzer fails. Now I've some errors in the CHANGELOG in the following packages: `video_player` / `video_player_android` / `video_player_avfoundation`. I think I should...

@stuartmorgan I've re-merged the newest main. `video_player` / `video_player_android` / `video_player_avfoundation` packages throws: > Dart changes are not allowed to other packages in video_player in the same PR as changes...

> I filed [flutter/flutter#122390](https://github.com/flutter/flutter/issues/122390) for the false positive, but for now you can just split the ignores into a new PR. We can get that landed quickly, unblocking this one....

I have updated this PR to not touch ignores meanwhile updated #3261 to remove lint checks.