packages
packages copied to clipboard
A collection of useful packages maintained by the Flutter team
_Let's try switching tests to canvaskit and see what breaks_ Fixes https://github.com/flutter/flutter/issues/143543
Bumps androidx.activity:activity from 1.7.2 to 1.8.2. [](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) You can trigger a rebase of this PR by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- Dependabot commands...
Change the 3 file palce, because issue [#150312](https://github.com/flutter/flutter/issues/150312) The reason for the issue is when call `counterStream.increment();` will notify `notifyListeners()` of `StreamListener`, and finally affect `_handleRouteInformationProviderNotification` of `_RouterState` in `packages/flutter/lib/src/widgets/router.dart`....
This PR adds the shared_preferences_tools package. This package user the [devtools_extension](https://pub.dev/packages/devtools_extensions) tooling to create a tool for shared preferences. The idea of this PR came from @kenzieschmoll on this [issue](https://github.com/flutter/flutter/issues/145433)....
Various orientation-related fixes for camera in mobile browsers, including https://github.com/flutter/flutter/issues/143288 and https://github.com/flutter/flutter/issues/117430. The improved video constraints might also fix the zoom behavior observed in https://github.com/flutter/flutter/issues/112280. Previously closed as https://github.com/flutter/packages/pull/6362. Fixes...
Enumerating available cameras on web requires permission and activates hardware. This PR allows initializing the camera controller without having to enumerate available cameras first. https://github.com/flutter/flutter/issues/145541 ## Pre-launch Checklist - [x]...
This PR adds a new constructor for `XFile` (`XFile.fromCustomSource`) that only takes an implementation of a new abstract class `XFileSource`. This new class enables users of the `cross_file` plugin to...
When route from the stack is replaced, its completer is lost, and causes futures in routes chain to never finish. This change add optional completer that can be passed when...
Add supports for relative routes by allowing going to a path relatively, like go('./$path') This PR doesn't fully resolve any issue, but it's mandatory to further add examples & tests...
Slots can currently be animated in and out of view, but there is not an ability to change the duration or curves of these animations. This PR adds additional parameters...