flutter
flutter copied to clipboard
Flutter makes it easy and fast to build beautiful apps for mobile and beyond
> [!NOTE] > CC'ing the framework to see if there's any opposition to this proposal, e.g. philosophically, users are responsible for using `Scrollbar`s themselves to abide by Android's quality standards...
Possible fix for https://github.com/flutter/flutter/issues/169574 It looks like the timeouts seem to be specific to downloading scripts. Specifically, after a certain point, we no longer download any scripts. Lowering the number...
> [!NOTE] > CC'ing the framework to see if there's any opposition to this proposal, e.g. philosophically, users are responsible for using `MouseRegion`s themselves to change the cursor as they...
This PR adds a new behaviour to `ListWheelScrollView` that allows to switch between reporting changes on scroll update or only on scroll end. `CupertinoPicker` now has a `changeReportingBehavior` param that...
When running on the web-server device hot reload option will default to disabled when `-d web-server` is also passed. This is temporary until the app can start correctly with hot...
### Steps to reproduce 1. Use Semantics(link: true, child: ...) in your app 2. Activate Screenreader (iOS: VoiceOver, Android: Talkback) 3. Select links in the rotor (iOS: Two fingers Bottle...
> [!NOTE] > This is a proof of concept for the `SurfaceProducer.invalidateSurface` method I am considering implementing to address https://github.com/flutter/flutter/issues/155294. See https://github.com/flutter/packages/pull/9360 for how I'd use it. ### What this...
Split off of https://github.com/flutter/flutter/pull/168019/ Worst case allocation performance for dl is fairly bad as we end up copying the data many more times than something like an STL vector would....
Pulled out of https://github.com/flutter/flutter/pull/168019/ which is stale.
### Steps to reproduce 1. A file that has your base route: home_route.dart or something that has your root route. 2. Add a sub route under that route. that is...