From 1e1df9d8c16434c40db7396a592c470943f566d9 Mon Sep 17 00:00:00 2001 From: Parker Lougheed Date: Wed, 16 Oct 2024 17:35:57 -0500 Subject: [PATCH 1/7] Account for deprecations to Color members --- .../basic_radial_hero_animation/lib/main.dart | 2 +- .../basic_staggered_animation/lib/main.dart | 4 +- .../radial_hero_animation/lib/main.dart | 2 +- .../lib/main.dart | 2 +- .../download_button/lib/button_taps.dart | 19 +++---- .../effects/download_button/lib/display.dart | 17 +++--- .../download_button/lib/display_text.dart | 17 +++--- .../effects/download_button/lib/main.dart | 19 +++---- .../effects/download_button/lib/spinner.dart | 19 +++---- .../effects/download_button/lib/stop.dart | 19 +++---- .../parallax_scrolling/lib/excerpt2.dart | 2 +- .../parallax_scrolling/lib/excerpt3.dart | 2 +- .../parallax_scrolling/lib/excerpt4.dart | 2 +- .../parallax_scrolling/lib/excerpt5.dart | 2 +- .../effects/parallax_scrolling/lib/main.dart | 2 +- .../photo_filter_carousel/lib/excerpt1.dart | 2 +- .../photo_filter_carousel/lib/excerpt4.dart | 2 +- .../photo_filter_carousel/lib/excerpt5.dart | 2 +- .../photo_filter_carousel/lib/excerpt6.dart | 2 +- .../photo_filter_carousel/lib/main.dart | 4 +- .../lib/original_example.dart | 4 +- .../get-started/codelab_web/lib/main.dart | 2 +- .../get-started/codelab_web/lib/step3.dart | 2 +- .../gallery/lib/bottom_navigation_demo.dart | 2 +- examples/layout/gallery/lib/cards_demo.dart | 10 ++-- examples/layout/gallery/lib/colors_demo.dart | 23 +++++--- .../lib/pages/adaptive_grid_page.dart | 2 +- .../cookbook/effects/download-button.md | 53 ++++++++++--------- .../cookbook/effects/parallax-scrolling.md | 4 +- .../cookbook/effects/photo-filter-carousel.md | 6 +-- src/content/get-started/codelab-web.md | 4 +- .../release/breaking-changes/buttons.md | 8 +-- src/content/ui/animations/hero-animations.md | 2 +- .../ui/animations/staggered-animations.md | 4 +- 34 files changed, 145 insertions(+), 123 deletions(-) diff --git a/examples/_animation/basic_radial_hero_animation/lib/main.dart b/examples/_animation/basic_radial_hero_animation/lib/main.dart index 312a8aa75b0..cd41fff10ba 100644 --- a/examples/_animation/basic_radial_hero_animation/lib/main.dart +++ b/examples/_animation/basic_radial_hero_animation/lib/main.dart @@ -22,7 +22,7 @@ class Photo extends StatelessWidget { return Material( // Slightly opaque color appears where the image has transparency. // Makes it possible to see the radial transformation's boundary. - color: Theme.of(context).primaryColor.withOpacity(0.25), + color: Theme.of(context).primaryColor.withValues(alpha: 0.25), child: InkWell( onTap: onTap, child: Image.asset( diff --git a/examples/_animation/basic_staggered_animation/lib/main.dart b/examples/_animation/basic_staggered_animation/lib/main.dart index ae26b1970e9..34201ec90a6 100644 --- a/examples/_animation/basic_staggered_animation/lib/main.dart +++ b/examples/_animation/basic_staggered_animation/lib/main.dart @@ -187,9 +187,9 @@ class _StaggerDemoState extends State width: 300, height: 300, decoration: BoxDecoration( - color: Colors.black.withOpacity(0.1), + color: Colors.black.withValues(alpha: 0.1), border: Border.all( - color: Colors.black.withOpacity(0.5), + color: Colors.black.withValues(alpha: 0.5), ), ), child: StaggerAnimation(controller: _controller.view), diff --git a/examples/_animation/radial_hero_animation/lib/main.dart b/examples/_animation/radial_hero_animation/lib/main.dart index d4d9f0f6a82..0519c81f480 100644 --- a/examples/_animation/radial_hero_animation/lib/main.dart +++ b/examples/_animation/radial_hero_animation/lib/main.dart @@ -25,7 +25,7 @@ class Photo extends StatelessWidget { Widget build(BuildContext context) { return Material( // Slightly opaque color appears where the image has transparency. - color: Theme.of(context).primaryColor.withOpacity(0.25), + color: Theme.of(context).primaryColor.withValues(alpha: 0.25), child: InkWell( onTap: onTap, child: LayoutBuilder( diff --git a/examples/_animation/radial_hero_animation_animate_rectclip/lib/main.dart b/examples/_animation/radial_hero_animation_animate_rectclip/lib/main.dart index ba5d6d9330e..e99b5bdc434 100644 --- a/examples/_animation/radial_hero_animation_animate_rectclip/lib/main.dart +++ b/examples/_animation/radial_hero_animation_animate_rectclip/lib/main.dart @@ -26,7 +26,7 @@ class Photo extends StatelessWidget { Widget build(BuildContext context) { return Material( // Slightly opaque color appears where the image has transparency. - color: Theme.of(context).primaryColor.withOpacity(0.25), + color: Theme.of(context).primaryColor.withValues(alpha: 0.25), child: InkWell( onTap: onTap, child: LayoutBuilder( diff --git a/examples/cookbook/effects/download_button/lib/button_taps.dart b/examples/cookbook/effects/download_button/lib/button_taps.dart index 3a655c1e3e0..b9b772befcf 100644 --- a/examples/cookbook/effects/download_button/lib/button_taps.dart +++ b/examples/cookbook/effects/download_button/lib/button_taps.dart @@ -20,15 +20,16 @@ class ButtonShapeWidget extends StatelessWidget { @override Widget build(BuildContext context) { - var shape = const ShapeDecoration( - shape: StadiumBorder(), - color: CupertinoColors.lightBackgroundGray, - ); - + final ShapeDecoration shape; if (isDownloading || isFetching) { - shape = ShapeDecoration( - shape: const CircleBorder(), - color: Colors.white.withOpacity(0), + shape = const ShapeDecoration( + shape: CircleBorder(), + color: Colors.transparent, + ); + } else { + shape = const ShapeDecoration( + shape: StadiumBorder(), + color: CupertinoColors.lightBackgroundGray, ); } @@ -81,7 +82,7 @@ class ProgressIndicatorWidget extends StatelessWidget { return CircularProgressIndicator( backgroundColor: isDownloading ? CupertinoColors.lightBackgroundGray - : Colors.white.withOpacity(0), + : Colors.transparent, valueColor: AlwaysStoppedAnimation(isFetching ? CupertinoColors.lightBackgroundGray : CupertinoColors.activeBlue), diff --git a/examples/cookbook/effects/download_button/lib/display.dart b/examples/cookbook/effects/download_button/lib/display.dart index ac03085d1e8..0d83733e40d 100644 --- a/examples/cookbook/effects/download_button/lib/display.dart +++ b/examples/cookbook/effects/download_button/lib/display.dart @@ -56,15 +56,16 @@ class ButtonShapeWidget extends StatelessWidget { @override Widget build(BuildContext context) { - var shape = const ShapeDecoration( - shape: StadiumBorder(), - color: CupertinoColors.lightBackgroundGray, - ); - + final ShapeDecoration shape; if (isDownloading || isFetching) { - shape = ShapeDecoration( - shape: const CircleBorder(), - color: Colors.white.withOpacity(0), + shape = const ShapeDecoration( + shape: CircleBorder(), + color: Colors.transparent, + ); + } else { + shape = const ShapeDecoration( + shape: StadiumBorder(), + color: CupertinoColors.lightBackgroundGray, ); } diff --git a/examples/cookbook/effects/download_button/lib/display_text.dart b/examples/cookbook/effects/download_button/lib/display_text.dart index 340785fe485..66acb59e723 100644 --- a/examples/cookbook/effects/download_button/lib/display_text.dart +++ b/examples/cookbook/effects/download_button/lib/display_text.dart @@ -19,15 +19,16 @@ class ButtonShapeWidget extends StatelessWidget { @override Widget build(BuildContext context) { - var shape = const ShapeDecoration( - shape: StadiumBorder(), - color: CupertinoColors.lightBackgroundGray, - ); - + final ShapeDecoration shape; if (isDownloading || isFetching) { - shape = ShapeDecoration( - shape: const CircleBorder(), - color: Colors.white.withOpacity(0), + shape = const ShapeDecoration( + shape: CircleBorder(), + color: Colors.transparent, + ); + } else { + shape = const ShapeDecoration( + shape: StadiumBorder(), + color: CupertinoColors.lightBackgroundGray, ); } diff --git a/examples/cookbook/effects/download_button/lib/main.dart b/examples/cookbook/effects/download_button/lib/main.dart index 8a90903c33b..070e2663a76 100644 --- a/examples/cookbook/effects/download_button/lib/main.dart +++ b/examples/cookbook/effects/download_button/lib/main.dart @@ -328,15 +328,16 @@ class ButtonShapeWidget extends StatelessWidget { @override Widget build(BuildContext context) { - var shape = const ShapeDecoration( - shape: StadiumBorder(), - color: CupertinoColors.lightBackgroundGray, - ); - + final ShapeDecoration shape; if (isDownloading || isFetching) { - shape = ShapeDecoration( - shape: const CircleBorder(), - color: Colors.white.withOpacity(0), + shape = const ShapeDecoration( + shape: CircleBorder(), + color: Colors.transparent, + ); + } else { + shape = const ShapeDecoration( + shape: StadiumBorder(), + color: CupertinoColors.lightBackgroundGray, ); } @@ -389,7 +390,7 @@ class ProgressIndicatorWidget extends StatelessWidget { return CircularProgressIndicator( backgroundColor: isDownloading ? CupertinoColors.lightBackgroundGray - : Colors.white.withOpacity(0), + : Colors.transparent, valueColor: AlwaysStoppedAnimation(isFetching ? CupertinoColors.lightBackgroundGray : CupertinoColors.activeBlue), diff --git a/examples/cookbook/effects/download_button/lib/spinner.dart b/examples/cookbook/effects/download_button/lib/spinner.dart index 3d58d596fbd..85db5e4d898 100644 --- a/examples/cookbook/effects/download_button/lib/spinner.dart +++ b/examples/cookbook/effects/download_button/lib/spinner.dart @@ -18,15 +18,16 @@ class ButtonShapeWidget extends StatelessWidget { @override Widget build(BuildContext context) { - var shape = const ShapeDecoration( - shape: StadiumBorder(), - color: CupertinoColors.lightBackgroundGray, - ); - + final ShapeDecoration shape; if (isDownloading || isFetching) { - shape = ShapeDecoration( - shape: const CircleBorder(), - color: Colors.white.withOpacity(0), + shape = const ShapeDecoration( + shape: CircleBorder(), + color: Colors.transparent, + ); + } else { + shape = const ShapeDecoration( + shape: StadiumBorder(), + color: CupertinoColors.lightBackgroundGray, ); } @@ -79,7 +80,7 @@ class ProgressIndicatorWidget extends StatelessWidget { return CircularProgressIndicator( backgroundColor: isDownloading ? CupertinoColors.lightBackgroundGray - : Colors.white.withOpacity(0), + : Colors.transparent, valueColor: AlwaysStoppedAnimation(isFetching ? CupertinoColors.lightBackgroundGray : CupertinoColors.activeBlue), diff --git a/examples/cookbook/effects/download_button/lib/stop.dart b/examples/cookbook/effects/download_button/lib/stop.dart index 58c945e6ad6..b341172264c 100644 --- a/examples/cookbook/effects/download_button/lib/stop.dart +++ b/examples/cookbook/effects/download_button/lib/stop.dart @@ -18,15 +18,16 @@ class ButtonShapeWidget extends StatelessWidget { @override Widget build(BuildContext context) { - var shape = const ShapeDecoration( - shape: StadiumBorder(), - color: CupertinoColors.lightBackgroundGray, - ); - + final ShapeDecoration shape; if (isDownloading || isFetching) { - shape = ShapeDecoration( - shape: const CircleBorder(), - color: Colors.white.withOpacity(0), + shape = const ShapeDecoration( + shape: CircleBorder(), + color: Colors.transparent, + ); + } else { + shape = const ShapeDecoration( + shape: StadiumBorder(), + color: CupertinoColors.lightBackgroundGray, ); } @@ -79,7 +80,7 @@ class ProgressIndicatorWidget extends StatelessWidget { return CircularProgressIndicator( backgroundColor: isDownloading ? CupertinoColors.lightBackgroundGray - : Colors.white.withOpacity(0), + : Colors.transparent, valueColor: AlwaysStoppedAnimation(isFetching ? CupertinoColors.lightBackgroundGray : CupertinoColors.activeBlue), diff --git a/examples/cookbook/effects/parallax_scrolling/lib/excerpt2.dart b/examples/cookbook/effects/parallax_scrolling/lib/excerpt2.dart index b9d88d95cb8..d53499b4ad8 100644 --- a/examples/cookbook/effects/parallax_scrolling/lib/excerpt2.dart +++ b/examples/cookbook/effects/parallax_scrolling/lib/excerpt2.dart @@ -48,7 +48,7 @@ class LocationListItem extends StatelessWidget { child: DecoratedBox( decoration: BoxDecoration( gradient: LinearGradient( - colors: [Colors.transparent, Colors.black.withOpacity(0.7)], + colors: [Colors.transparent, Colors.black.withValues(alpha: 0.7)], begin: Alignment.topCenter, end: Alignment.bottomCenter, stops: const [0.6, 0.95], diff --git a/examples/cookbook/effects/parallax_scrolling/lib/excerpt3.dart b/examples/cookbook/effects/parallax_scrolling/lib/excerpt3.dart index 2ef0f40bebd..d803fb1e807 100644 --- a/examples/cookbook/effects/parallax_scrolling/lib/excerpt3.dart +++ b/examples/cookbook/effects/parallax_scrolling/lib/excerpt3.dart @@ -45,7 +45,7 @@ class LocationListItem extends StatelessWidget { child: DecoratedBox( decoration: BoxDecoration( gradient: LinearGradient( - colors: [Colors.transparent, Colors.black.withOpacity(0.7)], + colors: [Colors.transparent, Colors.black.withValues(alpha: 0.7)], begin: Alignment.topCenter, end: Alignment.bottomCenter, stops: const [0.6, 0.95], diff --git a/examples/cookbook/effects/parallax_scrolling/lib/excerpt4.dart b/examples/cookbook/effects/parallax_scrolling/lib/excerpt4.dart index b65ad62ddf0..b48891d54f4 100644 --- a/examples/cookbook/effects/parallax_scrolling/lib/excerpt4.dart +++ b/examples/cookbook/effects/parallax_scrolling/lib/excerpt4.dart @@ -52,7 +52,7 @@ class LocationListItem extends StatelessWidget { child: DecoratedBox( decoration: BoxDecoration( gradient: LinearGradient( - colors: [Colors.transparent, Colors.black.withOpacity(0.7)], + colors: [Colors.transparent, Colors.black.withValues(alpha: 0.7)], begin: Alignment.topCenter, end: Alignment.bottomCenter, stops: const [0.6, 0.95], diff --git a/examples/cookbook/effects/parallax_scrolling/lib/excerpt5.dart b/examples/cookbook/effects/parallax_scrolling/lib/excerpt5.dart index b49d3308da1..6053b87747b 100644 --- a/examples/cookbook/effects/parallax_scrolling/lib/excerpt5.dart +++ b/examples/cookbook/effects/parallax_scrolling/lib/excerpt5.dart @@ -59,7 +59,7 @@ class LocationListItem extends StatelessWidget { child: DecoratedBox( decoration: BoxDecoration( gradient: LinearGradient( - colors: [Colors.transparent, Colors.black.withOpacity(0.7)], + colors: [Colors.transparent, Colors.black.withValues(alpha: 0.7)], begin: Alignment.topCenter, end: Alignment.bottomCenter, stops: const [0.6, 0.95], diff --git a/examples/cookbook/effects/parallax_scrolling/lib/main.dart b/examples/cookbook/effects/parallax_scrolling/lib/main.dart index c20cd4aa1bb..c9018b3bf89 100644 --- a/examples/cookbook/effects/parallax_scrolling/lib/main.dart +++ b/examples/cookbook/effects/parallax_scrolling/lib/main.dart @@ -101,7 +101,7 @@ class LocationListItem extends StatelessWidget { child: DecoratedBox( decoration: BoxDecoration( gradient: LinearGradient( - colors: [Colors.transparent, Colors.black.withOpacity(0.7)], + colors: [Colors.transparent, Colors.black.withValues(alpha: 0.7)], begin: Alignment.topCenter, end: Alignment.bottomCenter, stops: const [0.6, 0.95], diff --git a/examples/cookbook/effects/photo_filter_carousel/lib/excerpt1.dart b/examples/cookbook/effects/photo_filter_carousel/lib/excerpt1.dart index f0127eb5a60..5aa8d8f3610 100644 --- a/examples/cookbook/effects/photo_filter_carousel/lib/excerpt1.dart +++ b/examples/cookbook/effects/photo_filter_carousel/lib/excerpt1.dart @@ -61,7 +61,7 @@ class _ExampleInstagramFilterSelectionState return Image.network( 'https://docs.flutter.dev/cookbook/img-files' '/effects/instagram-buttons/millennial-dude.jpg', - color: color.withOpacity(0.5), + color: color.withValues(alpha: 0.5), colorBlendMode: BlendMode.color, fit: BoxFit.cover, ); diff --git a/examples/cookbook/effects/photo_filter_carousel/lib/excerpt4.dart b/examples/cookbook/effects/photo_filter_carousel/lib/excerpt4.dart index 99523cb880d..6e9922cc451 100644 --- a/examples/cookbook/effects/photo_filter_carousel/lib/excerpt4.dart +++ b/examples/cookbook/effects/photo_filter_carousel/lib/excerpt4.dart @@ -122,7 +122,7 @@ class FilterItem extends StatelessWidget { child: Image.network( 'https://docs.flutter.dev/cookbook/img-files' '/effects/instagram-buttons/millennial-texture.jpg', - color: color.withOpacity(0.5), + color: color.withValues(alpha: 0.5), colorBlendMode: BlendMode.hardLight, ), ), diff --git a/examples/cookbook/effects/photo_filter_carousel/lib/excerpt5.dart b/examples/cookbook/effects/photo_filter_carousel/lib/excerpt5.dart index 8ac7ff78246..effbc5fda8a 100644 --- a/examples/cookbook/effects/photo_filter_carousel/lib/excerpt5.dart +++ b/examples/cookbook/effects/photo_filter_carousel/lib/excerpt5.dart @@ -98,7 +98,7 @@ class FilterItem extends StatelessWidget { child: Image.network( 'https://docs.flutter.dev/cookbook/img-files' '/effects/instagram-buttons/millennial-texture.jpg', - color: color.withOpacity(0.5), + color: color.withValues(alpha: 0.5), colorBlendMode: BlendMode.hardLight, ), ), diff --git a/examples/cookbook/effects/photo_filter_carousel/lib/excerpt6.dart b/examples/cookbook/effects/photo_filter_carousel/lib/excerpt6.dart index 5571f9390a2..9a85d830082 100644 --- a/examples/cookbook/effects/photo_filter_carousel/lib/excerpt6.dart +++ b/examples/cookbook/effects/photo_filter_carousel/lib/excerpt6.dart @@ -101,7 +101,7 @@ class FilterItem extends StatelessWidget { child: Image.network( 'https://docs.flutter.dev/cookbook/img-files' '/effects/instagram-buttons/millennial-texture.jpg', - color: color.withOpacity(0.5), + color: color.withValues(alpha: 0.5), colorBlendMode: BlendMode.hardLight, ), ), diff --git a/examples/cookbook/effects/photo_filter_carousel/lib/main.dart b/examples/cookbook/effects/photo_filter_carousel/lib/main.dart index 3829d0d57ec..6ba0371e1be 100644 --- a/examples/cookbook/effects/photo_filter_carousel/lib/main.dart +++ b/examples/cookbook/effects/photo_filter_carousel/lib/main.dart @@ -64,7 +64,7 @@ class _ExampleInstagramFilterSelectionState return Image.network( 'https://docs.flutter.dev/cookbook/img-files' '/effects/instagram-buttons/millennial-dude.jpg', - color: color.withOpacity(0.5), + color: color.withValues(alpha: 0.5), colorBlendMode: BlendMode.color, fit: BoxFit.cover, ); @@ -321,7 +321,7 @@ class FilterItem extends StatelessWidget { child: Image.network( 'https://docs.flutter.dev/cookbook/img-files' '/effects/instagram-buttons/millennial-texture.jpg', - color: color.withOpacity(0.5), + color: color.withValues(alpha: 0.5), colorBlendMode: BlendMode.hardLight, ), ), diff --git a/examples/cookbook/effects/photo_filter_carousel/lib/original_example.dart b/examples/cookbook/effects/photo_filter_carousel/lib/original_example.dart index 05c9c3feae6..63a4564ed3d 100644 --- a/examples/cookbook/effects/photo_filter_carousel/lib/original_example.dart +++ b/examples/cookbook/effects/photo_filter_carousel/lib/original_example.dart @@ -57,7 +57,7 @@ class _ExampleInstagramFilterSelectionState return Image.network( 'https://docs.flutter.dev/cookbook/img-files' '/effects/instagram-buttons/millennial-dude.jpg', - color: color.withOpacity(0.5), + color: color.withValues(alpha: 0.5), colorBlendMode: BlendMode.color, fit: BoxFit.cover, ); @@ -269,7 +269,7 @@ class FilterItem extends StatelessWidget { child: Image.network( 'https://docs.flutter.dev/cookbook/img-files' '/effects/instagram-buttons/millennial-texture.jpg', - color: color.withOpacity(0.5), + color: color.withValues(alpha: 0.5), colorBlendMode: BlendMode.hardLight, ), ), diff --git a/examples/get-started/codelab_web/lib/main.dart b/examples/get-started/codelab_web/lib/main.dart index 0dacd381fc6..c64c8da407c 100644 --- a/examples/get-started/codelab_web/lib/main.dart +++ b/examples/get-started/codelab_web/lib/main.dart @@ -200,7 +200,7 @@ class _AnimatedProgressIndicatorState extends State builder: (context, child) => LinearProgressIndicator( value: _curveAnimation.value, valueColor: _colorAnimation, - backgroundColor: _colorAnimation.value?.withOpacity(0.4), + backgroundColor: _colorAnimation.value?.withValues(alpha: 0.4), ), ); } diff --git a/examples/get-started/codelab_web/lib/step3.dart b/examples/get-started/codelab_web/lib/step3.dart index 3f5a71da615..0d457a25302 100644 --- a/examples/get-started/codelab_web/lib/step3.dart +++ b/examples/get-started/codelab_web/lib/step3.dart @@ -204,7 +204,7 @@ class _AnimatedProgressIndicatorState extends State builder: (context, child) => LinearProgressIndicator( value: _curveAnimation.value, valueColor: _colorAnimation, - backgroundColor: _colorAnimation.value?.withOpacity(0.4), + backgroundColor: _colorAnimation.value?.withValues(alpha: 0.4), ), ); } diff --git a/examples/layout/gallery/lib/bottom_navigation_demo.dart b/examples/layout/gallery/lib/bottom_navigation_demo.dart index 15c3146cb23..23e9626e743 100644 --- a/examples/layout/gallery/lib/bottom_navigation_demo.dart +++ b/examples/layout/gallery/lib/bottom_navigation_demo.dart @@ -114,7 +114,7 @@ class _BottomNavigationDemoState extends State }); }, selectedItemColor: colorScheme.onPrimary, - unselectedItemColor: colorScheme.onPrimary.withOpacity(0.38), + unselectedItemColor: colorScheme.onPrimary.withValues(alpha: 0.38), backgroundColor: colorScheme.primary, ), ), diff --git a/examples/layout/gallery/lib/cards_demo.dart b/examples/layout/gallery/lib/cards_demo.dart index 848b9446102..d0662bcf1ee 100644 --- a/examples/layout/gallery/lib/cards_demo.dart +++ b/examples/layout/gallery/lib/cards_demo.dart @@ -128,8 +128,10 @@ class TappableTravelDestinationItem extends StatelessWidget { shape: shape, child: InkWell( onTap: () {}, - splashColor: - Theme.of(context).colorScheme.onSurface.withOpacity(0.12), + splashColor: Theme.of(context) + .colorScheme + .onSurface + .withValues(alpha: 0.12), highlightColor: Colors.transparent, child: Semantics( label: destination.title, @@ -187,13 +189,13 @@ class SelectableTravelDestinationItem extends StatelessWidget { onLongPress: () { onSelected(); }, - splashColor: colorScheme.onSurface.withOpacity(0.12), + splashColor: colorScheme.onSurface.withValues(alpha: 0.12), highlightColor: Colors.transparent, child: Stack( children: [ Container( color: isSelected - ? colorScheme.primary.withOpacity(0.08) + ? colorScheme.primary.withValues(alpha: 0.08) : Colors.transparent, ), Semantics( diff --git a/examples/layout/gallery/lib/colors_demo.dart b/examples/layout/gallery/lib/colors_demo.dart index a10cce7626a..50f8e9bc7d5 100644 --- a/examples/layout/gallery/lib/colors_demo.dart +++ b/examples/layout/gallery/lib/colors_demo.dart @@ -145,9 +145,6 @@ class _ColorItem extends StatelessWidget { final Color color; final String prefix; - String get _colorString => - "#${color.value.toRadixString(16).padLeft(8, '0').toUpperCase()}"; - @override Widget build(BuildContext context) { return Semantics( @@ -161,19 +158,33 @@ class _ColorItem extends StatelessWidget { crossAxisAlignment: CrossAxisAlignment.center, children: [ Text('$prefix$index'), - Flexible(child: Text(_colorString)), + Flexible(child: Text(_argbColorString)), ], ), ), ); } + + static String _srgbComponentToHexString(double x) { + final value = (x * 255.0).round() & 0xff; + return value.toRadixString(16).toUpperCase(); + } + + String get _argbColorString { + final a = _srgbComponentToHexString(color.a); + final r = _srgbComponentToHexString(color.r); + final g = _srgbComponentToHexString(color.g); + final b = _srgbComponentToHexString(color.b); + return '#$a$r$g$b'; + } } class _PaletteTabView extends StatelessWidget { const _PaletteTabView({required this.colors}); final _Palette colors; - static const primaryKeys = [ + + static const List primaryKeys = [ 50, 100, 200, @@ -185,7 +196,7 @@ class _PaletteTabView extends StatelessWidget { 800, 900 ]; - static const accentKeys = [100, 200, 400, 700]; + static const List accentKeys = [100, 200, 400, 700]; @override Widget build(BuildContext context) { diff --git a/examples/ui/adaptive_app_demos/lib/pages/adaptive_grid_page.dart b/examples/ui/adaptive_app_demos/lib/pages/adaptive_grid_page.dart index 3a66d465067..2f0b77464e7 100644 --- a/examples/ui/adaptive_app_demos/lib/pages/adaptive_grid_page.dart +++ b/examples/ui/adaptive_app_demos/lib/pages/adaptive_grid_page.dart @@ -107,7 +107,7 @@ class _GridItem extends StatelessWidget { onPressed: () => onPressed.call(index), child: Stack(children: [ const Center(child: FlutterLogo(size: 64)), - Container(color: Colors.grey.withOpacity(isSelected ? .5 : .7)), + Container(color: Colors.grey.withValues(alpha: isSelected ? .5 : .7)), Align( alignment: Alignment.bottomCenter, child: Container( diff --git a/src/content/cookbook/effects/download-button.md b/src/content/cookbook/effects/download-button.md index 6c09199359c..18c1bdc5de5 100644 --- a/src/content/cookbook/effects/download-button.md +++ b/src/content/cookbook/effects/download-button.md @@ -176,15 +176,16 @@ class ButtonShapeWidget extends StatelessWidget { @override Widget build(BuildContext context) { - var shape = const ShapeDecoration( - shape: StadiumBorder(), - color: CupertinoColors.lightBackgroundGray, - ); - + final ShapeDecoration shape; if (isDownloading || isFetching) { - shape = ShapeDecoration( - shape: const CircleBorder(), - color: Colors.white.withOpacity(0), + shape = const ShapeDecoration( + shape: CircleBorder(), + color: Colors.transparent, + ); + } else { + shape = const ShapeDecoration( + shape: StadiumBorder(), + color: CupertinoColors.lightBackgroundGray, ); } @@ -242,15 +243,16 @@ class ButtonShapeWidget extends StatelessWidget { @override Widget build(BuildContext context) { - var shape = const ShapeDecoration( - shape: StadiumBorder(), - color: CupertinoColors.lightBackgroundGray, - ); - + final ShapeDecoration shape; if (isDownloading || isFetching) { - shape = ShapeDecoration( - shape: const CircleBorder(), - color: Colors.white.withOpacity(0), + shape = const ShapeDecoration( + shape: CircleBorder(), + color: Colors.transparent, + ); + } else { + shape = const ShapeDecoration( + shape: StadiumBorder(), + color: CupertinoColors.lightBackgroundGray, ); } @@ -803,15 +805,16 @@ class ButtonShapeWidget extends StatelessWidget { @override Widget build(BuildContext context) { - var shape = const ShapeDecoration( - shape: StadiumBorder(), - color: CupertinoColors.lightBackgroundGray, - ); - + final ShapeDecoration shape; if (isDownloading || isFetching) { - shape = ShapeDecoration( - shape: const CircleBorder(), - color: Colors.white.withOpacity(0), + shape = const ShapeDecoration( + shape: CircleBorder(), + color: Colors.transparent, + ); + } else { + shape = const ShapeDecoration( + shape: StadiumBorder(), + color: CupertinoColors.lightBackgroundGray, ); } @@ -864,7 +867,7 @@ class ProgressIndicatorWidget extends StatelessWidget { return CircularProgressIndicator( backgroundColor: isDownloading ? CupertinoColors.lightBackgroundGray - : Colors.white.withOpacity(0), + : Colors.transparent, valueColor: AlwaysStoppedAnimation(isFetching ? CupertinoColors.lightBackgroundGray : CupertinoColors.activeBlue), diff --git a/src/content/cookbook/effects/parallax-scrolling.md b/src/content/cookbook/effects/parallax-scrolling.md index 6ed1f424646..1a024947293 100644 --- a/src/content/cookbook/effects/parallax-scrolling.md +++ b/src/content/cookbook/effects/parallax-scrolling.md @@ -117,7 +117,7 @@ class LocationListItem extends StatelessWidget { child: DecoratedBox( decoration: BoxDecoration( gradient: LinearGradient( - colors: [Colors.transparent, Colors.black.withOpacity(0.7)], + colors: [Colors.transparent, Colors.black.withValues(alpha: 0.7)], begin: Alignment.topCenter, end: Alignment.bottomCenter, stops: const [0.6, 0.95], @@ -673,7 +673,7 @@ class LocationListItem extends StatelessWidget { child: DecoratedBox( decoration: BoxDecoration( gradient: LinearGradient( - colors: [Colors.transparent, Colors.black.withOpacity(0.7)], + colors: [Colors.transparent, Colors.black.withValues(alpha: 0.7)], begin: Alignment.topCenter, end: Alignment.bottomCenter, stops: const [0.6, 0.95], diff --git a/src/content/cookbook/effects/photo-filter-carousel.md b/src/content/cookbook/effects/photo-filter-carousel.md index d449584690e..70f9b446e0b 100644 --- a/src/content/cookbook/effects/photo-filter-carousel.md +++ b/src/content/cookbook/effects/photo-filter-carousel.md @@ -189,7 +189,7 @@ class FilterItem extends StatelessWidget { child: Image.network( 'https://docs.flutter.dev/cookbook/img-files' '/effects/instagram-buttons/millennial-texture.jpg', - color: color.withOpacity(0.5), + color: color.withValues(alpha: 0.5), colorBlendMode: BlendMode.hardLight, ), ), @@ -572,7 +572,7 @@ class _ExampleInstagramFilterSelectionState return Image.network( 'https://docs.flutter.dev/cookbook/img-files' '/effects/instagram-buttons/millennial-dude.jpg', - color: color.withOpacity(0.5), + color: color.withValues(alpha: 0.5), colorBlendMode: BlendMode.color, fit: BoxFit.cover, ); @@ -829,7 +829,7 @@ class FilterItem extends StatelessWidget { child: Image.network( 'https://docs.flutter.dev/cookbook/img-files' '/effects/instagram-buttons/millennial-texture.jpg', - color: color.withOpacity(0.5), + color: color.withValues(alpha: 0.5), colorBlendMode: BlendMode.hardLight, ), ), diff --git a/src/content/get-started/codelab-web.md b/src/content/get-started/codelab-web.md index 3166fd93a43..c7e4d419226 100644 --- a/src/content/get-started/codelab-web.md +++ b/src/content/get-started/codelab-web.md @@ -830,7 +830,7 @@ class _AnimatedProgressIndicatorState extends State builder: (context, child) => LinearProgressIndicator( value: _curveAnimation.value, valueColor: _colorAnimation, - backgroundColor: _colorAnimation.value?.withOpacity(0.4), + backgroundColor: _colorAnimation.value?.withValues(alpha: 0.4), ), ); } @@ -1080,7 +1080,7 @@ class _AnimatedProgressIndicatorState extends State builder: (context, child) => LinearProgressIndicator( value: _curveAnimation.value, valueColor: _colorAnimation, - backgroundColor: _colorAnimation.value?.withOpacity(0.4), + backgroundColor: _colorAnimation.value?.withValues(alpha: 0.4), ), ); } diff --git a/src/content/release/breaking-changes/buttons.md b/src/content/release/breaking-changes/buttons.md index 56be77110be..18d47ced35c 100644 --- a/src/content/release/breaking-changes/buttons.md +++ b/src/content/release/breaking-changes/buttons.md @@ -103,10 +103,10 @@ TextButton( overlayColor: MaterialStateProperty.resolveWith( (Set states) { if (states.contains(MaterialState.hovered)) - return Colors.blue.withOpacity(0.04); + return Colors.blue.withValues(alpha: 0.04); if (states.contains(MaterialState.focused) || states.contains(MaterialState.pressed)) - return Colors.blue.withOpacity(0.12); + return Colors.blue.withValues(alpha: 0.12); return null; // Defer to the widget's default. }, ), @@ -455,8 +455,8 @@ can just use the `styleFrom` method to override the disabled colors: ```dart RaisedButton( - disabledColor: Colors.red.withOpacity(0.12), - disabledTextColor: Colors.red.withOpacity(0.38), + disabledColor: Colors.red.withValues(alpha: 0.12), + disabledTextColor: Colors.red.withValues(alpha: 0.38), onPressed: null, child: Text('RaisedButton with custom disabled colors'), ), diff --git a/src/content/ui/animations/hero-animations.md b/src/content/ui/animations/hero-animations.md index 7420da9c05b..3b146b5d7fc 100644 --- a/src/content/ui/animations/hero-animations.md +++ b/src/content/ui/animations/hero-animations.md @@ -514,7 +514,7 @@ class Photo extends StatelessWidget { Widget build(BuildContext context) { return [!Material(!] // Slightly opaque color appears where the image has transparency. - [!color: Theme.of(context).primaryColor.withOpacity(0.25),!] + [!color: Theme.of(context).primaryColor.withValues(alpha: 0.25),!] child: [!InkWell(!] onTap: [!onTap,!] child: [!Image.asset(!] diff --git a/src/content/ui/animations/staggered-animations.md b/src/content/ui/animations/staggered-animations.md index c66e7e7da22..07afb0b8ec4 100644 --- a/src/content/ui/animations/staggered-animations.md +++ b/src/content/ui/animations/staggered-animations.md @@ -325,9 +325,9 @@ class _StaggerDemoState extends State width: 300, height: 300, decoration: BoxDecoration( - color: Colors.black.withOpacity(0.1), + color: Colors.black.withValues(alpha: 0.1), border: Border.all( - color: Colors.black.withOpacity(0.5), + color: Colors.black.withValues(alpha: 0.5), ), ), child: StaggerAnimation(controller:_controller.view), From ed1eca830f2501daf5513a14e50960486027360c Mon Sep 17 00:00:00 2001 From: Parker Lougheed Date: Wed, 16 Oct 2024 17:37:16 -0500 Subject: [PATCH 2/7] Update SDK constraint to 3.6 --- examples/_animation/basic_hero_animation/pubspec.yaml | 2 +- examples/_animation/basic_radial_hero_animation/pubspec.yaml | 2 +- examples/_animation/basic_staggered_animation/pubspec.yaml | 2 +- examples/_animation/hero_animation/pubspec.yaml | 2 +- examples/_animation/radial_hero_animation/pubspec.yaml | 2 +- .../radial_hero_animation_animate_rectclip/pubspec.yaml | 2 +- examples/_animation/staggered_pic_selection/pubspec.yaml | 2 +- examples/accessibility/pubspec.yaml | 2 +- examples/animation/animate0/pubspec.yaml | 2 +- examples/animation/animate1/pubspec.yaml | 2 +- examples/animation/animate2/pubspec.yaml | 2 +- examples/animation/animate3/pubspec.yaml | 2 +- examples/animation/animate4/pubspec.yaml | 2 +- examples/animation/animate5/pubspec.yaml | 2 +- examples/animation/implicit/pubspec.yaml | 2 +- examples/cookbook/animation/animated_container/pubspec.yaml | 2 +- examples/cookbook/animation/opacity_animation/pubspec.yaml | 2 +- examples/cookbook/animation/page_route_animation/pubspec.yaml | 2 +- examples/cookbook/animation/physics_simulation/pubspec.yaml | 2 +- examples/cookbook/design/drawer/pubspec.yaml | 2 +- examples/cookbook/design/fonts/pubspec.yaml | 2 +- examples/cookbook/design/orientation/pubspec.yaml | 2 +- examples/cookbook/design/package_fonts/pubspec.yaml | 2 +- examples/cookbook/design/snackbars/pubspec.yaml | 2 +- examples/cookbook/design/tabs/pubspec.yaml | 2 +- examples/cookbook/design/themes/pubspec.yaml | 2 +- examples/cookbook/effects/download_button/pubspec.yaml | 2 +- examples/cookbook/effects/drag_a_widget/pubspec.yaml | 2 +- examples/cookbook/effects/expandable_fab/pubspec.yaml | 2 +- examples/cookbook/effects/gradient_bubbles/pubspec.yaml | 2 +- examples/cookbook/effects/nested_nav/pubspec.yaml | 2 +- examples/cookbook/effects/parallax_scrolling/pubspec.yaml | 2 +- examples/cookbook/effects/photo_filter_carousel/pubspec.yaml | 2 +- examples/cookbook/effects/shimmer_loading/pubspec.yaml | 2 +- .../cookbook/effects/staggered_menu_animation/pubspec.yaml | 2 +- examples/cookbook/effects/typing_indicator/pubspec.yaml | 2 +- examples/cookbook/forms/focus/pubspec.yaml | 2 +- examples/cookbook/forms/retrieve_input/pubspec.yaml | 2 +- examples/cookbook/forms/text_field_changes/pubspec.yaml | 2 +- examples/cookbook/forms/text_input/pubspec.yaml | 2 +- examples/cookbook/forms/validation/pubspec.yaml | 2 +- .../cookbook/games/achievements_leaderboards/pubspec.yaml | 2 +- examples/cookbook/games/firestore_multiplayer/pubspec.yaml | 2 +- examples/cookbook/gestures/dismissible/pubspec.yaml | 2 +- examples/cookbook/gestures/handling_taps/pubspec.yaml | 2 +- examples/cookbook/gestures/ripples/pubspec.yaml | 2 +- examples/cookbook/images/cached_images/pubspec.yaml | 2 +- examples/cookbook/images/fading_in_images/pubspec.yaml | 2 +- examples/cookbook/images/network_image/pubspec.yaml | 2 +- examples/cookbook/lists/basic_list/pubspec.yaml | 2 +- examples/cookbook/lists/floating_app_bar/pubspec.yaml | 2 +- examples/cookbook/lists/grid_lists/pubspec.yaml | 2 +- examples/cookbook/lists/horizontal_list/pubspec.yaml | 2 +- examples/cookbook/lists/long_lists/pubspec.yaml | 2 +- examples/cookbook/lists/mixed_list/pubspec.yaml | 2 +- examples/cookbook/lists/spaced_items/pubspec.yaml | 2 +- examples/cookbook/maintenance/error_reporting/pubspec.yaml | 2 +- examples/cookbook/navigation/hero_animations/pubspec.yaml | 2 +- examples/cookbook/navigation/named_routes/pubspec.yaml | 2 +- .../cookbook/navigation/navigate_with_arguments/pubspec.yaml | 2 +- examples/cookbook/navigation/navigation_basics/pubspec.yaml | 2 +- examples/cookbook/navigation/passing_data/pubspec.yaml | 2 +- examples/cookbook/navigation/returning_data/pubspec.yaml | 2 +- .../cookbook/networking/authenticated_requests/pubspec.yaml | 2 +- examples/cookbook/networking/background_parsing/pubspec.yaml | 2 +- examples/cookbook/networking/delete_data/pubspec.yaml | 2 +- examples/cookbook/networking/fetch_data/pubspec.yaml | 2 +- examples/cookbook/networking/send_data/pubspec.yaml | 2 +- examples/cookbook/networking/update_data/pubspec.yaml | 2 +- examples/cookbook/networking/web_sockets/pubspec.yaml | 2 +- examples/cookbook/persistence/key_value/pubspec.yaml | 2 +- .../cookbook/persistence/reading_writing_files/pubspec.yaml | 2 +- examples/cookbook/persistence/sqlite/pubspec.yaml | 2 +- examples/cookbook/plugins/google_mobile_ads/pubspec.yaml | 2 +- examples/cookbook/plugins/picture_using_camera/pubspec.yaml | 2 +- examples/cookbook/plugins/play_video/pubspec.yaml | 2 +- .../cookbook/testing/integration/introduction/pubspec.yaml | 2 +- examples/cookbook/testing/integration/profiling/pubspec.yaml | 2 +- examples/cookbook/testing/unit/counter_app/pubspec.yaml | 2 +- examples/cookbook/testing/unit/mocking/pubspec.yaml | 2 +- examples/cookbook/testing/widget/finders/pubspec.yaml | 2 +- examples/cookbook/testing/widget/introduction/pubspec.yaml | 2 +- examples/cookbook/testing/widget/scrolling/pubspec.yaml | 2 +- examples/cookbook/testing/widget/tap_drag/pubspec.yaml | 2 +- examples/data-and-backend/json/pubspec.yaml | 2 +- examples/deployment/obfuscate/pubspec.yaml | 2 +- examples/example_utils/pubspec.yaml | 2 +- examples/get-started/codelab_web/pubspec.yaml | 2 +- examples/get-started/flutter-for/android_devs/pubspec.yaml | 2 +- examples/get-started/flutter-for/declarative/pubspec.yaml | 2 +- examples/get-started/flutter-for/ios_devs/pubspec.yaml | 2 +- .../flutter-for/react_native_devs/my_widgets/pubspec.yaml | 2 +- .../get-started/flutter-for/react_native_devs/pubspec.yaml | 2 +- examples/get-started/flutter-for/web_devs/pubspec.yaml | 2 +- examples/get-started/flutter-for/xamarin_devs/pubspec.yaml | 2 +- examples/googleapis/pubspec.yaml | 2 +- examples/integration_test/pubspec.yaml | 2 +- examples/integration_test_migration/pubspec.yaml | 2 +- examples/internationalization/add_language/pubspec.yaml | 2 +- examples/internationalization/gen_l10n_example/pubspec.yaml | 2 +- examples/internationalization/intl_example/pubspec.yaml | 2 +- examples/internationalization/minimal/pubspec.yaml | 2 +- examples/layout/base/pubspec.yaml | 2 +- examples/layout/card_and_stack/pubspec.yaml | 2 +- examples/layout/constraints/pubspec.yaml | 2 +- examples/layout/container/pubspec.yaml | 2 +- examples/layout/grid_and_list/pubspec.yaml | 2 +- examples/layout/lakes/interactive/pubspec.yaml | 2 +- examples/layout/lakes/step2/pubspec.yaml | 2 +- examples/layout/lakes/step3/pubspec.yaml | 2 +- examples/layout/lakes/step4/pubspec.yaml | 2 +- examples/layout/lakes/step5/pubspec.yaml | 2 +- examples/layout/lakes/step6/pubspec.yaml | 2 +- examples/layout/non_material/pubspec.yaml | 2 +- examples/layout/pavlova/pubspec.yaml | 2 +- examples/layout/row_column/pubspec.yaml | 2 +- examples/layout/sizing/pubspec.yaml | 2 +- examples/perf/concurrency/isolates/pubspec.yaml | 2 +- examples/perf/deferred_components/pubspec.yaml | 2 +- examples/platform_integration/compose_activities/pubspec.yaml | 2 +- examples/platform_integration/pigeon/pubspec.yaml | 2 +- examples/platform_integration/platform_channels/pubspec.yaml | 2 +- examples/platform_integration/platform_views/pubspec.yaml | 2 +- .../platform_integration/plugin_api_migration/pubspec.yaml | 2 +- examples/resources/architectural_overview/pubspec.yaml | 2 +- examples/resources/dart_swift_concurrency/pubspec.yaml | 2 +- examples/state_mgmt/simple/pubspec.yaml | 2 +- examples/testing/code_debugging/pubspec.yaml | 2 +- examples/testing/common_errors/pubspec.yaml | 2 +- examples/testing/errors/pubspec.yaml | 2 +- examples/testing/integration_tests/how_to/pubspec.yaml | 2 +- examples/testing/native_debugging/pubspec.yaml | 4 ++-- examples/tools/pubspec.yaml | 2 +- examples/ui/adaptive_app_demos/pubspec.yaml | 2 +- examples/ui/advanced/actions_and_shortcuts/pubspec.yaml | 2 +- examples/ui/advanced/focus/pubspec.yaml | 2 +- examples/ui/assets_and_images/pubspec.yaml | 2 +- examples/ui/interactive/pubspec.yaml | 2 +- examples/ui/widgets_intro/pubspec.yaml | 2 +- examples/visual_debugging/pubspec.yaml | 2 +- pubspec.yaml | 2 +- src/content/tools/pubspec.md | 2 +- tool/flutter_site/pubspec.yaml | 2 +- 143 files changed, 144 insertions(+), 144 deletions(-) diff --git a/examples/_animation/basic_hero_animation/pubspec.yaml b/examples/_animation/basic_hero_animation/pubspec.yaml index 5d1ded3956f..691b57a122a 100644 --- a/examples/_animation/basic_hero_animation/pubspec.yaml +++ b/examples/_animation/basic_hero_animation/pubspec.yaml @@ -4,7 +4,7 @@ description: >- Shows how to create a simple or Hero animation using the Hero class directly. environment: - sdk: ^3.5.0 + sdk: ^3.6.0-0 dependencies: flutter: diff --git a/examples/_animation/basic_radial_hero_animation/pubspec.yaml b/examples/_animation/basic_radial_hero_animation/pubspec.yaml index 6ceb5ab4961..689b63af774 100644 --- a/examples/_animation/basic_radial_hero_animation/pubspec.yaml +++ b/examples/_animation/basic_radial_hero_animation/pubspec.yaml @@ -5,7 +5,7 @@ description: >- as it animates to the new route. environment: - sdk: ^3.5.0 + sdk: ^3.6.0-0 dependencies: flutter: diff --git a/examples/_animation/basic_staggered_animation/pubspec.yaml b/examples/_animation/basic_staggered_animation/pubspec.yaml index a1b5317acf2..a33b16b49be 100644 --- a/examples/_animation/basic_staggered_animation/pubspec.yaml +++ b/examples/_animation/basic_staggered_animation/pubspec.yaml @@ -3,7 +3,7 @@ publish_to: none description: An introductory example to staggered animations. environment: - sdk: ^3.5.0 + sdk: ^3.6.0-0 dependencies: flutter: diff --git a/examples/_animation/hero_animation/pubspec.yaml b/examples/_animation/hero_animation/pubspec.yaml index a257a6dffce..b607be133c9 100644 --- a/examples/_animation/hero_animation/pubspec.yaml +++ b/examples/_animation/hero_animation/pubspec.yaml @@ -3,7 +3,7 @@ publish_to: none description: Shows how to create a simple Hero transition. environment: - sdk: ^3.5.0 + sdk: ^3.6.0-0 dependencies: flutter: diff --git a/examples/_animation/radial_hero_animation/pubspec.yaml b/examples/_animation/radial_hero_animation/pubspec.yaml index e44e5f97e29..d3bf610d87f 100644 --- a/examples/_animation/radial_hero_animation/pubspec.yaml +++ b/examples/_animation/radial_hero_animation/pubspec.yaml @@ -5,7 +5,7 @@ description: >- as it animates to the new route. environment: - sdk: ^3.5.0 + sdk: ^3.6.0-0 dependencies: flutter: diff --git a/examples/_animation/radial_hero_animation_animate_rectclip/pubspec.yaml b/examples/_animation/radial_hero_animation_animate_rectclip/pubspec.yaml index 5d164172d1f..8e510c70d56 100644 --- a/examples/_animation/radial_hero_animation_animate_rectclip/pubspec.yaml +++ b/examples/_animation/radial_hero_animation_animate_rectclip/pubspec.yaml @@ -5,7 +5,7 @@ description: >- as it animates to the new route. environment: - sdk: ^3.5.0 + sdk: ^3.6.0-0 dependencies: flutter: diff --git a/examples/_animation/staggered_pic_selection/pubspec.yaml b/examples/_animation/staggered_pic_selection/pubspec.yaml index 9646105a922..fb2fadbfa84 100644 --- a/examples/_animation/staggered_pic_selection/pubspec.yaml +++ b/examples/_animation/staggered_pic_selection/pubspec.yaml @@ -3,7 +3,7 @@ publish_to: none description: A more complex staggered animation example. environment: - sdk: ^3.5.0 + sdk: ^3.6.0-0 dependencies: flutter: diff --git a/examples/accessibility/pubspec.yaml b/examples/accessibility/pubspec.yaml index 14d7e77a2c3..af4db1a417f 100644 --- a/examples/accessibility/pubspec.yaml +++ b/examples/accessibility/pubspec.yaml @@ -4,7 +4,7 @@ version: 1.0.0 publish_to: none environment: - sdk: ^3.5.0 + sdk: ^3.6.0-0 dependencies: flutter: diff --git a/examples/animation/animate0/pubspec.yaml b/examples/animation/animate0/pubspec.yaml index c8b6bd8f552..de9541ded93 100644 --- a/examples/animation/animate0/pubspec.yaml +++ b/examples/animation/animate0/pubspec.yaml @@ -5,7 +5,7 @@ description: >- version: 1.0.0 environment: - sdk: ^3.5.0 + sdk: ^3.6.0-0 dependencies: flutter: diff --git a/examples/animation/animate1/pubspec.yaml b/examples/animation/animate1/pubspec.yaml index c8b6bd8f552..de9541ded93 100644 --- a/examples/animation/animate1/pubspec.yaml +++ b/examples/animation/animate1/pubspec.yaml @@ -5,7 +5,7 @@ description: >- version: 1.0.0 environment: - sdk: ^3.5.0 + sdk: ^3.6.0-0 dependencies: flutter: diff --git a/examples/animation/animate2/pubspec.yaml b/examples/animation/animate2/pubspec.yaml index c8b6bd8f552..de9541ded93 100644 --- a/examples/animation/animate2/pubspec.yaml +++ b/examples/animation/animate2/pubspec.yaml @@ -5,7 +5,7 @@ description: >- version: 1.0.0 environment: - sdk: ^3.5.0 + sdk: ^3.6.0-0 dependencies: flutter: diff --git a/examples/animation/animate3/pubspec.yaml b/examples/animation/animate3/pubspec.yaml index c8b6bd8f552..de9541ded93 100644 --- a/examples/animation/animate3/pubspec.yaml +++ b/examples/animation/animate3/pubspec.yaml @@ -5,7 +5,7 @@ description: >- version: 1.0.0 environment: - sdk: ^3.5.0 + sdk: ^3.6.0-0 dependencies: flutter: diff --git a/examples/animation/animate4/pubspec.yaml b/examples/animation/animate4/pubspec.yaml index c8b6bd8f552..de9541ded93 100644 --- a/examples/animation/animate4/pubspec.yaml +++ b/examples/animation/animate4/pubspec.yaml @@ -5,7 +5,7 @@ description: >- version: 1.0.0 environment: - sdk: ^3.5.0 + sdk: ^3.6.0-0 dependencies: flutter: diff --git a/examples/animation/animate5/pubspec.yaml b/examples/animation/animate5/pubspec.yaml index c8b6bd8f552..de9541ded93 100644 --- a/examples/animation/animate5/pubspec.yaml +++ b/examples/animation/animate5/pubspec.yaml @@ -5,7 +5,7 @@ description: >- version: 1.0.0 environment: - sdk: ^3.5.0 + sdk: ^3.6.0-0 dependencies: flutter: diff --git a/examples/animation/implicit/pubspec.yaml b/examples/animation/implicit/pubspec.yaml index 5dee182c413..88f9b786b0c 100644 --- a/examples/animation/implicit/pubspec.yaml +++ b/examples/animation/implicit/pubspec.yaml @@ -5,7 +5,7 @@ publish_to: none version: 1.0.0+1 environment: - sdk: ^3.5.0 + sdk: ^3.6.0-0 dependencies: flutter: diff --git a/examples/cookbook/animation/animated_container/pubspec.yaml b/examples/cookbook/animation/animated_container/pubspec.yaml index b15113738e0..fb83e267b7e 100644 --- a/examples/cookbook/animation/animated_container/pubspec.yaml +++ b/examples/cookbook/animation/animated_container/pubspec.yaml @@ -2,7 +2,7 @@ name: animated_container description: Sample code for cookbook. environment: - sdk: ^3.5.0 + sdk: ^3.6.0-0 dependencies: flutter: diff --git a/examples/cookbook/animation/opacity_animation/pubspec.yaml b/examples/cookbook/animation/opacity_animation/pubspec.yaml index 75c8e94b886..12a4f993990 100644 --- a/examples/cookbook/animation/opacity_animation/pubspec.yaml +++ b/examples/cookbook/animation/opacity_animation/pubspec.yaml @@ -2,7 +2,7 @@ name: opacity_animation description: Sample code for cookbook. environment: - sdk: ^3.5.0 + sdk: ^3.6.0-0 dependencies: flutter: diff --git a/examples/cookbook/animation/page_route_animation/pubspec.yaml b/examples/cookbook/animation/page_route_animation/pubspec.yaml index 8240138505e..5e33577da66 100644 --- a/examples/cookbook/animation/page_route_animation/pubspec.yaml +++ b/examples/cookbook/animation/page_route_animation/pubspec.yaml @@ -2,7 +2,7 @@ name: page_route_animation description: Sample code for cookbook. environment: - sdk: ^3.5.0 + sdk: ^3.6.0-0 dependencies: flutter: diff --git a/examples/cookbook/animation/physics_simulation/pubspec.yaml b/examples/cookbook/animation/physics_simulation/pubspec.yaml index 580eed7757f..ee88297e025 100644 --- a/examples/cookbook/animation/physics_simulation/pubspec.yaml +++ b/examples/cookbook/animation/physics_simulation/pubspec.yaml @@ -2,7 +2,7 @@ name: physics_simulation description: Sample code for cookbook. environment: - sdk: ^3.5.0 + sdk: ^3.6.0-0 dependencies: flutter: diff --git a/examples/cookbook/design/drawer/pubspec.yaml b/examples/cookbook/design/drawer/pubspec.yaml index e5f0db5b71f..48725590bb8 100644 --- a/examples/cookbook/design/drawer/pubspec.yaml +++ b/examples/cookbook/design/drawer/pubspec.yaml @@ -2,7 +2,7 @@ name: drawer description: Sample code for drawer cookbook recipe. environment: - sdk: ^3.5.0 + sdk: ^3.6.0-0 dependencies: flutter: diff --git a/examples/cookbook/design/fonts/pubspec.yaml b/examples/cookbook/design/fonts/pubspec.yaml index 3eb000a73fe..add56299c7a 100644 --- a/examples/cookbook/design/fonts/pubspec.yaml +++ b/examples/cookbook/design/fonts/pubspec.yaml @@ -4,7 +4,7 @@ publish_to: none version: 1.0.0+1 environment: - sdk: ^3.5.0 + sdk: ^3.6.0-0 dependencies: flutter: diff --git a/examples/cookbook/design/orientation/pubspec.yaml b/examples/cookbook/design/orientation/pubspec.yaml index 06ef6d29e2f..d1763ceb02d 100644 --- a/examples/cookbook/design/orientation/pubspec.yaml +++ b/examples/cookbook/design/orientation/pubspec.yaml @@ -2,7 +2,7 @@ name: orientation description: Sample code for orientation cookbook recipe. environment: - sdk: ^3.5.0 + sdk: ^3.6.0-0 dependencies: flutter: diff --git a/examples/cookbook/design/package_fonts/pubspec.yaml b/examples/cookbook/design/package_fonts/pubspec.yaml index 9c0f6f632c1..41d0a442d09 100644 --- a/examples/cookbook/design/package_fonts/pubspec.yaml +++ b/examples/cookbook/design/package_fonts/pubspec.yaml @@ -4,7 +4,7 @@ publish_to: none version: 1.0.0+1 environment: - sdk: ^3.5.0 + sdk: ^3.6.0-0 dependencies: flutter: diff --git a/examples/cookbook/design/snackbars/pubspec.yaml b/examples/cookbook/design/snackbars/pubspec.yaml index c07b82053d9..f3a217d7117 100644 --- a/examples/cookbook/design/snackbars/pubspec.yaml +++ b/examples/cookbook/design/snackbars/pubspec.yaml @@ -2,7 +2,7 @@ name: snackbars description: Sample code for snackbars cookbook recipe. environment: - sdk: ^3.5.0 + sdk: ^3.6.0-0 dependencies: flutter: diff --git a/examples/cookbook/design/tabs/pubspec.yaml b/examples/cookbook/design/tabs/pubspec.yaml index 51ae998e854..11dbf7de9c3 100644 --- a/examples/cookbook/design/tabs/pubspec.yaml +++ b/examples/cookbook/design/tabs/pubspec.yaml @@ -2,7 +2,7 @@ name: tabs description: Sample code for tabs cookbook recipe. environment: - sdk: ^3.5.0 + sdk: ^3.6.0-0 dependencies: flutter: diff --git a/examples/cookbook/design/themes/pubspec.yaml b/examples/cookbook/design/themes/pubspec.yaml index 76b5595e24c..02aab6308ea 100644 --- a/examples/cookbook/design/themes/pubspec.yaml +++ b/examples/cookbook/design/themes/pubspec.yaml @@ -2,7 +2,7 @@ name: themes description: Sample code for themes cookbook recipe. environment: - sdk: ^3.5.0 + sdk: ^3.6.0-0 dependencies: flutter: diff --git a/examples/cookbook/effects/download_button/pubspec.yaml b/examples/cookbook/effects/download_button/pubspec.yaml index 49661891e18..988b389047e 100644 --- a/examples/cookbook/effects/download_button/pubspec.yaml +++ b/examples/cookbook/effects/download_button/pubspec.yaml @@ -4,7 +4,7 @@ publish_to: none version: 1.0.0+1 environment: - sdk: ^3.5.0 + sdk: ^3.6.0-0 dependencies: flutter: diff --git a/examples/cookbook/effects/drag_a_widget/pubspec.yaml b/examples/cookbook/effects/drag_a_widget/pubspec.yaml index bbe23e6277e..a157e447c89 100644 --- a/examples/cookbook/effects/drag_a_widget/pubspec.yaml +++ b/examples/cookbook/effects/drag_a_widget/pubspec.yaml @@ -6,7 +6,7 @@ publish_to: none version: 1.0.0+1 environment: - sdk: ^3.5.0 + sdk: ^3.6.0-0 dependencies: flutter: diff --git a/examples/cookbook/effects/expandable_fab/pubspec.yaml b/examples/cookbook/effects/expandable_fab/pubspec.yaml index a8a8cc252a5..74566e269d3 100644 --- a/examples/cookbook/effects/expandable_fab/pubspec.yaml +++ b/examples/cookbook/effects/expandable_fab/pubspec.yaml @@ -5,7 +5,7 @@ publish_to: none version: 1.0.0+1 environment: - sdk: ^3.5.0 + sdk: ^3.6.0-0 dependencies: flutter: diff --git a/examples/cookbook/effects/gradient_bubbles/pubspec.yaml b/examples/cookbook/effects/gradient_bubbles/pubspec.yaml index 53bfe2fdc2a..9b708516d89 100644 --- a/examples/cookbook/effects/gradient_bubbles/pubspec.yaml +++ b/examples/cookbook/effects/gradient_bubbles/pubspec.yaml @@ -4,7 +4,7 @@ publish_to: none version: 1.0.0+1 environment: - sdk: ^3.5.0 + sdk: ^3.6.0-0 dependencies: flutter: diff --git a/examples/cookbook/effects/nested_nav/pubspec.yaml b/examples/cookbook/effects/nested_nav/pubspec.yaml index 0a6a3152de6..6d209ffe274 100644 --- a/examples/cookbook/effects/nested_nav/pubspec.yaml +++ b/examples/cookbook/effects/nested_nav/pubspec.yaml @@ -6,7 +6,7 @@ publish_to: none version: 1.0.0+1 environment: - sdk: ^3.5.0 + sdk: ^3.6.0-0 dependencies: flutter: diff --git a/examples/cookbook/effects/parallax_scrolling/pubspec.yaml b/examples/cookbook/effects/parallax_scrolling/pubspec.yaml index f40f5b1f09d..10865f2a400 100644 --- a/examples/cookbook/effects/parallax_scrolling/pubspec.yaml +++ b/examples/cookbook/effects/parallax_scrolling/pubspec.yaml @@ -6,7 +6,7 @@ publish_to: none version: 1.0.0+1 environment: - sdk: ^3.5.0 + sdk: ^3.6.0-0 dependencies: flutter: diff --git a/examples/cookbook/effects/photo_filter_carousel/pubspec.yaml b/examples/cookbook/effects/photo_filter_carousel/pubspec.yaml index a807b1bfedd..b2598fe8526 100644 --- a/examples/cookbook/effects/photo_filter_carousel/pubspec.yaml +++ b/examples/cookbook/effects/photo_filter_carousel/pubspec.yaml @@ -6,7 +6,7 @@ publish_to: none version: 1.0.0+1 environment: - sdk: ^3.5.0 + sdk: ^3.6.0-0 dependencies: flutter: diff --git a/examples/cookbook/effects/shimmer_loading/pubspec.yaml b/examples/cookbook/effects/shimmer_loading/pubspec.yaml index 8619a88c5cf..520dddf46d9 100644 --- a/examples/cookbook/effects/shimmer_loading/pubspec.yaml +++ b/examples/cookbook/effects/shimmer_loading/pubspec.yaml @@ -6,7 +6,7 @@ publish_to: none version: 1.0.0+1 environment: - sdk: ^3.5.0 + sdk: ^3.6.0-0 dependencies: flutter: diff --git a/examples/cookbook/effects/staggered_menu_animation/pubspec.yaml b/examples/cookbook/effects/staggered_menu_animation/pubspec.yaml index c3acb3716ee..52e47254509 100644 --- a/examples/cookbook/effects/staggered_menu_animation/pubspec.yaml +++ b/examples/cookbook/effects/staggered_menu_animation/pubspec.yaml @@ -6,7 +6,7 @@ publish_to: none version: 1.0.0+1 environment: - sdk: ^3.5.0 + sdk: ^3.6.0-0 dependencies: flutter: diff --git a/examples/cookbook/effects/typing_indicator/pubspec.yaml b/examples/cookbook/effects/typing_indicator/pubspec.yaml index 83e1bed5b1f..9d0885425ca 100644 --- a/examples/cookbook/effects/typing_indicator/pubspec.yaml +++ b/examples/cookbook/effects/typing_indicator/pubspec.yaml @@ -5,7 +5,7 @@ publish_to: none version: 1.0.0+1 environment: - sdk: ^3.5.0 + sdk: ^3.6.0-0 dependencies: flutter: diff --git a/examples/cookbook/forms/focus/pubspec.yaml b/examples/cookbook/forms/focus/pubspec.yaml index 4d8a7ac1f81..a1c19ccc113 100644 --- a/examples/cookbook/forms/focus/pubspec.yaml +++ b/examples/cookbook/forms/focus/pubspec.yaml @@ -2,7 +2,7 @@ name: focus description: Sample code for focus cookbook recipe. environment: - sdk: ^3.5.0 + sdk: ^3.6.0-0 dependencies: flutter: diff --git a/examples/cookbook/forms/retrieve_input/pubspec.yaml b/examples/cookbook/forms/retrieve_input/pubspec.yaml index 368e402e172..08f5ca67f9a 100644 --- a/examples/cookbook/forms/retrieve_input/pubspec.yaml +++ b/examples/cookbook/forms/retrieve_input/pubspec.yaml @@ -2,7 +2,7 @@ name: retrieve_input description: Sample code for retrieve_input cookbook recipe. environment: - sdk: ^3.5.0 + sdk: ^3.6.0-0 dependencies: flutter: diff --git a/examples/cookbook/forms/text_field_changes/pubspec.yaml b/examples/cookbook/forms/text_field_changes/pubspec.yaml index 95fbd683b02..3b387053b0a 100644 --- a/examples/cookbook/forms/text_field_changes/pubspec.yaml +++ b/examples/cookbook/forms/text_field_changes/pubspec.yaml @@ -2,7 +2,7 @@ name: text_field_changes description: Sample code for text_field_changes environment: - sdk: ^3.5.0 + sdk: ^3.6.0-0 dependencies: flutter: diff --git a/examples/cookbook/forms/text_input/pubspec.yaml b/examples/cookbook/forms/text_input/pubspec.yaml index 610b95650f2..f2dc3f2595c 100644 --- a/examples/cookbook/forms/text_input/pubspec.yaml +++ b/examples/cookbook/forms/text_input/pubspec.yaml @@ -6,7 +6,7 @@ publish_to: none version: 1.0.0+1 environment: - sdk: ^3.5.0 + sdk: ^3.6.0-0 dependencies: flutter: diff --git a/examples/cookbook/forms/validation/pubspec.yaml b/examples/cookbook/forms/validation/pubspec.yaml index 89a82c37457..c5892f383be 100644 --- a/examples/cookbook/forms/validation/pubspec.yaml +++ b/examples/cookbook/forms/validation/pubspec.yaml @@ -2,7 +2,7 @@ name: form description: Use Form widget to perform form validation. environment: - sdk: ^3.5.0 + sdk: ^3.6.0-0 dependencies: flutter: diff --git a/examples/cookbook/games/achievements_leaderboards/pubspec.yaml b/examples/cookbook/games/achievements_leaderboards/pubspec.yaml index e8a16045df7..ea9c9cb11f6 100644 --- a/examples/cookbook/games/achievements_leaderboards/pubspec.yaml +++ b/examples/cookbook/games/achievements_leaderboards/pubspec.yaml @@ -2,7 +2,7 @@ name: games_services_example description: Games services environment: - sdk: ^3.5.0 + sdk: ^3.6.0-0 dependencies: flutter: diff --git a/examples/cookbook/games/firestore_multiplayer/pubspec.yaml b/examples/cookbook/games/firestore_multiplayer/pubspec.yaml index e4216746282..4686dfb292f 100644 --- a/examples/cookbook/games/firestore_multiplayer/pubspec.yaml +++ b/examples/cookbook/games/firestore_multiplayer/pubspec.yaml @@ -2,7 +2,7 @@ name: firestore_multiplayer description: Firestore multiplayer environment: - sdk: ^3.5.0 + sdk: ^3.6.0-0 dependencies: flutter: diff --git a/examples/cookbook/gestures/dismissible/pubspec.yaml b/examples/cookbook/gestures/dismissible/pubspec.yaml index 0b91766d528..abf902478a6 100644 --- a/examples/cookbook/gestures/dismissible/pubspec.yaml +++ b/examples/cookbook/gestures/dismissible/pubspec.yaml @@ -2,7 +2,7 @@ name: dismissible description: Sample code for dismissible cookbook recipe. environment: - sdk: ^3.5.0 + sdk: ^3.6.0-0 dependencies: flutter: diff --git a/examples/cookbook/gestures/handling_taps/pubspec.yaml b/examples/cookbook/gestures/handling_taps/pubspec.yaml index 67b4017f95a..944f0f420a3 100644 --- a/examples/cookbook/gestures/handling_taps/pubspec.yaml +++ b/examples/cookbook/gestures/handling_taps/pubspec.yaml @@ -2,7 +2,7 @@ name: handling_taps description: Example on handling_taps cookbook recipe. environment: - sdk: ^3.5.0 + sdk: ^3.6.0-0 dependencies: flutter: diff --git a/examples/cookbook/gestures/ripples/pubspec.yaml b/examples/cookbook/gestures/ripples/pubspec.yaml index 5d4b8dca5e1..a10a7454f99 100644 --- a/examples/cookbook/gestures/ripples/pubspec.yaml +++ b/examples/cookbook/gestures/ripples/pubspec.yaml @@ -2,7 +2,7 @@ name: ripples description: Example for ripples cookbook recipe environment: - sdk: ^3.5.0 + sdk: ^3.6.0-0 dependencies: flutter: diff --git a/examples/cookbook/images/cached_images/pubspec.yaml b/examples/cookbook/images/cached_images/pubspec.yaml index 700a8740ce9..b556fb2ac32 100644 --- a/examples/cookbook/images/cached_images/pubspec.yaml +++ b/examples/cookbook/images/cached_images/pubspec.yaml @@ -6,7 +6,7 @@ publish_to: none version: 1.0.0+1 environment: - sdk: ^3.5.0 + sdk: ^3.6.0-0 dependencies: flutter: diff --git a/examples/cookbook/images/fading_in_images/pubspec.yaml b/examples/cookbook/images/fading_in_images/pubspec.yaml index cfb0fe4b3ed..2ffb41f2ede 100644 --- a/examples/cookbook/images/fading_in_images/pubspec.yaml +++ b/examples/cookbook/images/fading_in_images/pubspec.yaml @@ -6,7 +6,7 @@ publish_to: none version: 1.0.0+1 environment: - sdk: ^3.5.0 + sdk: ^3.6.0-0 dependencies: flutter: diff --git a/examples/cookbook/images/network_image/pubspec.yaml b/examples/cookbook/images/network_image/pubspec.yaml index db1b745873d..7cfc1c1cc3d 100644 --- a/examples/cookbook/images/network_image/pubspec.yaml +++ b/examples/cookbook/images/network_image/pubspec.yaml @@ -6,7 +6,7 @@ publish_to: none version: 1.0.0+1 environment: - sdk: ^3.5.0 + sdk: ^3.6.0-0 dependencies: flutter: diff --git a/examples/cookbook/lists/basic_list/pubspec.yaml b/examples/cookbook/lists/basic_list/pubspec.yaml index 7ef09c54cd6..b97f97b3aaf 100644 --- a/examples/cookbook/lists/basic_list/pubspec.yaml +++ b/examples/cookbook/lists/basic_list/pubspec.yaml @@ -6,7 +6,7 @@ publish_to: none version: 1.0.0+1 environment: - sdk: ^3.5.0 + sdk: ^3.6.0-0 dependencies: flutter: diff --git a/examples/cookbook/lists/floating_app_bar/pubspec.yaml b/examples/cookbook/lists/floating_app_bar/pubspec.yaml index 67eaedef943..2ce873b7a0f 100644 --- a/examples/cookbook/lists/floating_app_bar/pubspec.yaml +++ b/examples/cookbook/lists/floating_app_bar/pubspec.yaml @@ -2,7 +2,7 @@ name: floating_app_bar description: Example for floating_app_bar cookbook recipe environment: - sdk: ^3.5.0 + sdk: ^3.6.0-0 dependencies: flutter: diff --git a/examples/cookbook/lists/grid_lists/pubspec.yaml b/examples/cookbook/lists/grid_lists/pubspec.yaml index 4db22fdc7d3..8e072dd5b99 100644 --- a/examples/cookbook/lists/grid_lists/pubspec.yaml +++ b/examples/cookbook/lists/grid_lists/pubspec.yaml @@ -6,7 +6,7 @@ publish_to: none version: 1.0.0+1 environment: - sdk: ^3.5.0 + sdk: ^3.6.0-0 dependencies: flutter: diff --git a/examples/cookbook/lists/horizontal_list/pubspec.yaml b/examples/cookbook/lists/horizontal_list/pubspec.yaml index 78c9577cdbf..27c96fb7d96 100644 --- a/examples/cookbook/lists/horizontal_list/pubspec.yaml +++ b/examples/cookbook/lists/horizontal_list/pubspec.yaml @@ -6,7 +6,7 @@ publish_to: none version: 1.0.0+1 environment: - sdk: ^3.5.0 + sdk: ^3.6.0-0 dependencies: flutter: diff --git a/examples/cookbook/lists/long_lists/pubspec.yaml b/examples/cookbook/lists/long_lists/pubspec.yaml index a735b72525d..c07bde81d58 100644 --- a/examples/cookbook/lists/long_lists/pubspec.yaml +++ b/examples/cookbook/lists/long_lists/pubspec.yaml @@ -2,7 +2,7 @@ name: long_lists description: Example for long_lists cookbook recipe environment: - sdk: ^3.5.0 + sdk: ^3.6.0-0 dependencies: flutter: diff --git a/examples/cookbook/lists/mixed_list/pubspec.yaml b/examples/cookbook/lists/mixed_list/pubspec.yaml index b5754e8878e..ad7280c6838 100644 --- a/examples/cookbook/lists/mixed_list/pubspec.yaml +++ b/examples/cookbook/lists/mixed_list/pubspec.yaml @@ -2,7 +2,7 @@ name: mixed_lists description: Example for mixed_lists cookbook recipe environment: - sdk: ^3.5.0 + sdk: ^3.6.0-0 dependencies: flutter: diff --git a/examples/cookbook/lists/spaced_items/pubspec.yaml b/examples/cookbook/lists/spaced_items/pubspec.yaml index 4e411fe8791..766c9965f7e 100644 --- a/examples/cookbook/lists/spaced_items/pubspec.yaml +++ b/examples/cookbook/lists/spaced_items/pubspec.yaml @@ -2,7 +2,7 @@ name: spaced_items description: Example for spaced_items cookbook recipe environment: - sdk: ^3.5.0 + sdk: ^3.6.0-0 dependencies: flutter: diff --git a/examples/cookbook/maintenance/error_reporting/pubspec.yaml b/examples/cookbook/maintenance/error_reporting/pubspec.yaml index 2ac8c6476c7..0477d71f03b 100644 --- a/examples/cookbook/maintenance/error_reporting/pubspec.yaml +++ b/examples/cookbook/maintenance/error_reporting/pubspec.yaml @@ -3,7 +3,7 @@ description: Error reporting example using sentry. publish_to: none environment: - sdk: ^3.5.0 + sdk: ^3.6.0-0 dependencies: flutter: diff --git a/examples/cookbook/navigation/hero_animations/pubspec.yaml b/examples/cookbook/navigation/hero_animations/pubspec.yaml index fafc9a8dd41..4945ad79d90 100644 --- a/examples/cookbook/navigation/hero_animations/pubspec.yaml +++ b/examples/cookbook/navigation/hero_animations/pubspec.yaml @@ -2,7 +2,7 @@ name: hero_animations description: Hero animations environment: - sdk: ^3.5.0 + sdk: ^3.6.0-0 dependencies: flutter: diff --git a/examples/cookbook/navigation/named_routes/pubspec.yaml b/examples/cookbook/navigation/named_routes/pubspec.yaml index 8c580808649..cb6fa374164 100644 --- a/examples/cookbook/navigation/named_routes/pubspec.yaml +++ b/examples/cookbook/navigation/named_routes/pubspec.yaml @@ -2,7 +2,7 @@ name: navigate_with_arguments description: Use Form widget to perform form validation. environment: - sdk: ^3.5.0 + sdk: ^3.6.0-0 dependencies: flutter: diff --git a/examples/cookbook/navigation/navigate_with_arguments/pubspec.yaml b/examples/cookbook/navigation/navigate_with_arguments/pubspec.yaml index 8c580808649..cb6fa374164 100644 --- a/examples/cookbook/navigation/navigate_with_arguments/pubspec.yaml +++ b/examples/cookbook/navigation/navigate_with_arguments/pubspec.yaml @@ -2,7 +2,7 @@ name: navigate_with_arguments description: Use Form widget to perform form validation. environment: - sdk: ^3.5.0 + sdk: ^3.6.0-0 dependencies: flutter: diff --git a/examples/cookbook/navigation/navigation_basics/pubspec.yaml b/examples/cookbook/navigation/navigation_basics/pubspec.yaml index 5bbe670ec04..98ba089064f 100644 --- a/examples/cookbook/navigation/navigation_basics/pubspec.yaml +++ b/examples/cookbook/navigation/navigation_basics/pubspec.yaml @@ -6,7 +6,7 @@ publish_to: none # Remove this line if you wish to publish to pub.dev version: 1.0.0+1 environment: - sdk: ^3.5.0 + sdk: ^3.6.0-0 dependencies: flutter: diff --git a/examples/cookbook/navigation/passing_data/pubspec.yaml b/examples/cookbook/navigation/passing_data/pubspec.yaml index 68574767ee7..6e02c5d5147 100644 --- a/examples/cookbook/navigation/passing_data/pubspec.yaml +++ b/examples/cookbook/navigation/passing_data/pubspec.yaml @@ -2,7 +2,7 @@ name: passing_data description: Passing data environment: - sdk: ^3.5.0 + sdk: ^3.6.0-0 dependencies: flutter: diff --git a/examples/cookbook/navigation/returning_data/pubspec.yaml b/examples/cookbook/navigation/returning_data/pubspec.yaml index 2c0757d9bae..b2e920bde9a 100644 --- a/examples/cookbook/navigation/returning_data/pubspec.yaml +++ b/examples/cookbook/navigation/returning_data/pubspec.yaml @@ -2,7 +2,7 @@ name: returning_data description: Returning data environment: - sdk: ^3.5.0 + sdk: ^3.6.0-0 dependencies: flutter: diff --git a/examples/cookbook/networking/authenticated_requests/pubspec.yaml b/examples/cookbook/networking/authenticated_requests/pubspec.yaml index 3ad43876429..529f3db06ae 100644 --- a/examples/cookbook/networking/authenticated_requests/pubspec.yaml +++ b/examples/cookbook/networking/authenticated_requests/pubspec.yaml @@ -2,7 +2,7 @@ name: hero_animations description: Hero animations environment: - sdk: ^3.5.0 + sdk: ^3.6.0-0 dependencies: flutter: diff --git a/examples/cookbook/networking/background_parsing/pubspec.yaml b/examples/cookbook/networking/background_parsing/pubspec.yaml index 44468996392..f113a83a9e2 100644 --- a/examples/cookbook/networking/background_parsing/pubspec.yaml +++ b/examples/cookbook/networking/background_parsing/pubspec.yaml @@ -2,7 +2,7 @@ name: background_parsing description: Background parsing environment: - sdk: ^3.5.0 + sdk: ^3.6.0-0 dependencies: flutter: diff --git a/examples/cookbook/networking/delete_data/pubspec.yaml b/examples/cookbook/networking/delete_data/pubspec.yaml index 80cd687a698..fecf29c4dc2 100644 --- a/examples/cookbook/networking/delete_data/pubspec.yaml +++ b/examples/cookbook/networking/delete_data/pubspec.yaml @@ -2,7 +2,7 @@ name: delete_data description: Delete Data environment: - sdk: ^3.5.0 + sdk: ^3.6.0-0 dependencies: flutter: diff --git a/examples/cookbook/networking/fetch_data/pubspec.yaml b/examples/cookbook/networking/fetch_data/pubspec.yaml index 640e267a99a..97ebddc9b9c 100644 --- a/examples/cookbook/networking/fetch_data/pubspec.yaml +++ b/examples/cookbook/networking/fetch_data/pubspec.yaml @@ -2,7 +2,7 @@ name: fetch_data description: Fetch Data environment: - sdk: ^3.5.0 + sdk: ^3.6.0-0 dependencies: flutter: diff --git a/examples/cookbook/networking/send_data/pubspec.yaml b/examples/cookbook/networking/send_data/pubspec.yaml index d9ebb9a185d..d8f93703e86 100644 --- a/examples/cookbook/networking/send_data/pubspec.yaml +++ b/examples/cookbook/networking/send_data/pubspec.yaml @@ -2,7 +2,7 @@ name: send_data description: Send data environment: - sdk: ^3.5.0 + sdk: ^3.6.0-0 dependencies: flutter: diff --git a/examples/cookbook/networking/update_data/pubspec.yaml b/examples/cookbook/networking/update_data/pubspec.yaml index 64fccb0222a..8878d06dc2e 100644 --- a/examples/cookbook/networking/update_data/pubspec.yaml +++ b/examples/cookbook/networking/update_data/pubspec.yaml @@ -2,7 +2,7 @@ name: update_data description: Update Data environment: - sdk: ^3.5.0 + sdk: ^3.6.0-0 dependencies: flutter: diff --git a/examples/cookbook/networking/web_sockets/pubspec.yaml b/examples/cookbook/networking/web_sockets/pubspec.yaml index e6bfb09ae78..25d3a1f5a5e 100644 --- a/examples/cookbook/networking/web_sockets/pubspec.yaml +++ b/examples/cookbook/networking/web_sockets/pubspec.yaml @@ -2,7 +2,7 @@ name: web_sockets description: Web Sockets environment: - sdk: ^3.5.0 + sdk: ^3.6.0-0 dependencies: flutter: diff --git a/examples/cookbook/persistence/key_value/pubspec.yaml b/examples/cookbook/persistence/key_value/pubspec.yaml index fb8cf39de7d..9b702800859 100644 --- a/examples/cookbook/persistence/key_value/pubspec.yaml +++ b/examples/cookbook/persistence/key_value/pubspec.yaml @@ -5,7 +5,7 @@ description: >- shows how to use the shared_preferences package. environment: - sdk: ^3.5.0 + sdk: ^3.6.0-0 dependencies: flutter: diff --git a/examples/cookbook/persistence/reading_writing_files/pubspec.yaml b/examples/cookbook/persistence/reading_writing_files/pubspec.yaml index 9aafa40a8ea..e6a2f54fef6 100644 --- a/examples/cookbook/persistence/reading_writing_files/pubspec.yaml +++ b/examples/cookbook/persistence/reading_writing_files/pubspec.yaml @@ -2,7 +2,7 @@ name: reading_writing_files description: Reading and Writing Files environment: - sdk: ^3.5.0 + sdk: ^3.6.0-0 dependencies: flutter: diff --git a/examples/cookbook/persistence/sqlite/pubspec.yaml b/examples/cookbook/persistence/sqlite/pubspec.yaml index 7baa9bb6a68..d4ca6a570a5 100644 --- a/examples/cookbook/persistence/sqlite/pubspec.yaml +++ b/examples/cookbook/persistence/sqlite/pubspec.yaml @@ -2,7 +2,7 @@ name: sqlite description: Example of using sqflite plugin to access SQLite database. environment: - sdk: ^3.5.0 + sdk: ^3.6.0-0 dependencies: flutter: diff --git a/examples/cookbook/plugins/google_mobile_ads/pubspec.yaml b/examples/cookbook/plugins/google_mobile_ads/pubspec.yaml index 09f8a80d5ff..87df1a5dc3c 100644 --- a/examples/cookbook/plugins/google_mobile_ads/pubspec.yaml +++ b/examples/cookbook/plugins/google_mobile_ads/pubspec.yaml @@ -2,7 +2,7 @@ name: google_mobile_ads_example description: Google mobile ads environment: - sdk: ^3.5.0 + sdk: ^3.6.0-0 dependencies: flutter: diff --git a/examples/cookbook/plugins/picture_using_camera/pubspec.yaml b/examples/cookbook/plugins/picture_using_camera/pubspec.yaml index d63a1b27c9a..ba7c58964bd 100644 --- a/examples/cookbook/plugins/picture_using_camera/pubspec.yaml +++ b/examples/cookbook/plugins/picture_using_camera/pubspec.yaml @@ -2,7 +2,7 @@ name: picture_using_camera description: A new Flutter project. environment: - sdk: ^3.5.0 + sdk: ^3.6.0-0 dependencies: flutter: diff --git a/examples/cookbook/plugins/play_video/pubspec.yaml b/examples/cookbook/plugins/play_video/pubspec.yaml index 7a0a0725c52..3a8a77ebf20 100644 --- a/examples/cookbook/plugins/play_video/pubspec.yaml +++ b/examples/cookbook/plugins/play_video/pubspec.yaml @@ -4,7 +4,7 @@ publish_to: none # Remove this line if you wish to publish to pub.dev version: 1.0.0+1 environment: - sdk: ^3.5.0 + sdk: ^3.6.0-0 dependencies: flutter: diff --git a/examples/cookbook/testing/integration/introduction/pubspec.yaml b/examples/cookbook/testing/integration/introduction/pubspec.yaml index 9b5cb80affd..80291817925 100644 --- a/examples/cookbook/testing/integration/introduction/pubspec.yaml +++ b/examples/cookbook/testing/integration/introduction/pubspec.yaml @@ -4,7 +4,7 @@ publish_to: none # Remove this line if you wish to publish to pub.dev version: 1.0.0+1 environment: - sdk: ^3.5.0 + sdk: ^3.6.0-0 dependencies: flutter: diff --git a/examples/cookbook/testing/integration/profiling/pubspec.yaml b/examples/cookbook/testing/integration/profiling/pubspec.yaml index c105c889d7c..63f85b2090b 100644 --- a/examples/cookbook/testing/integration/profiling/pubspec.yaml +++ b/examples/cookbook/testing/integration/profiling/pubspec.yaml @@ -2,7 +2,7 @@ name: scrolling description: A new Flutter project. environment: - sdk: ^3.5.0 + sdk: ^3.6.0-0 dependencies: flutter: diff --git a/examples/cookbook/testing/unit/counter_app/pubspec.yaml b/examples/cookbook/testing/unit/counter_app/pubspec.yaml index 04a2aacb031..f82767966c8 100644 --- a/examples/cookbook/testing/unit/counter_app/pubspec.yaml +++ b/examples/cookbook/testing/unit/counter_app/pubspec.yaml @@ -5,7 +5,7 @@ publish_to: none version: 1.0.0+1 environment: - sdk: ^3.5.0 + sdk: ^3.6.0-0 dependencies: flutter: diff --git a/examples/cookbook/testing/unit/mocking/pubspec.yaml b/examples/cookbook/testing/unit/mocking/pubspec.yaml index 29ab8f5fe52..b7b77506f7a 100644 --- a/examples/cookbook/testing/unit/mocking/pubspec.yaml +++ b/examples/cookbook/testing/unit/mocking/pubspec.yaml @@ -2,7 +2,7 @@ name: mocking description: Use the Mockito package to mimic the behavior of services for testing. environment: - sdk: ^3.5.0 + sdk: ^3.6.0-0 dependencies: flutter: diff --git a/examples/cookbook/testing/widget/finders/pubspec.yaml b/examples/cookbook/testing/widget/finders/pubspec.yaml index 9fecdd82b6a..b0918406d19 100644 --- a/examples/cookbook/testing/widget/finders/pubspec.yaml +++ b/examples/cookbook/testing/widget/finders/pubspec.yaml @@ -2,7 +2,7 @@ name: finders description: A new Flutter project. environment: - sdk: ^3.5.0 + sdk: ^3.6.0-0 dependencies: flutter: diff --git a/examples/cookbook/testing/widget/introduction/pubspec.yaml b/examples/cookbook/testing/widget/introduction/pubspec.yaml index c1f3a72f370..63435a4ce56 100644 --- a/examples/cookbook/testing/widget/introduction/pubspec.yaml +++ b/examples/cookbook/testing/widget/introduction/pubspec.yaml @@ -2,7 +2,7 @@ name: introduction description: A new Flutter project. environment: - sdk: ^3.5.0 + sdk: ^3.6.0-0 dependencies: flutter: diff --git a/examples/cookbook/testing/widget/scrolling/pubspec.yaml b/examples/cookbook/testing/widget/scrolling/pubspec.yaml index 9af9e153f16..297f8640537 100644 --- a/examples/cookbook/testing/widget/scrolling/pubspec.yaml +++ b/examples/cookbook/testing/widget/scrolling/pubspec.yaml @@ -2,7 +2,7 @@ name: scrolling description: A new Flutter project. environment: - sdk: ^3.5.0 + sdk: ^3.6.0-0 dependencies: flutter: diff --git a/examples/cookbook/testing/widget/tap_drag/pubspec.yaml b/examples/cookbook/testing/widget/tap_drag/pubspec.yaml index 9fecdd82b6a..b0918406d19 100644 --- a/examples/cookbook/testing/widget/tap_drag/pubspec.yaml +++ b/examples/cookbook/testing/widget/tap_drag/pubspec.yaml @@ -2,7 +2,7 @@ name: finders description: A new Flutter project. environment: - sdk: ^3.5.0 + sdk: ^3.6.0-0 dependencies: flutter: diff --git a/examples/data-and-backend/json/pubspec.yaml b/examples/data-and-backend/json/pubspec.yaml index 137b1bf5feb..df588ec49af 100644 --- a/examples/data-and-backend/json/pubspec.yaml +++ b/examples/data-and-backend/json/pubspec.yaml @@ -5,7 +5,7 @@ publish_to: none version: 1.0.0+1 environment: - sdk: ^3.5.0 + sdk: ^3.6.0-0 dependencies: json_annotation: ^4.8.1 diff --git a/examples/deployment/obfuscate/pubspec.yaml b/examples/deployment/obfuscate/pubspec.yaml index d9663369467..e4bb865a5bb 100644 --- a/examples/deployment/obfuscate/pubspec.yaml +++ b/examples/deployment/obfuscate/pubspec.yaml @@ -5,7 +5,7 @@ publish_to: none version: 1.0.0+1 environment: - sdk: ^3.5.0 + sdk: ^3.6.0-0 dependencies: flutter: diff --git a/examples/example_utils/pubspec.yaml b/examples/example_utils/pubspec.yaml index 3805c27e6bd..32a0d29890c 100644 --- a/examples/example_utils/pubspec.yaml +++ b/examples/example_utils/pubspec.yaml @@ -3,7 +3,7 @@ description: Utils for examples and code snippets on docs.flutter.dev. publish_to: none environment: - sdk: ^3.5.0 + sdk: ^3.6.0-0 dependencies: flutter_lints: ^5.0.0 diff --git a/examples/get-started/codelab_web/pubspec.yaml b/examples/get-started/codelab_web/pubspec.yaml index 541f54c34ae..7f63d293746 100644 --- a/examples/get-started/codelab_web/pubspec.yaml +++ b/examples/get-started/codelab_web/pubspec.yaml @@ -5,7 +5,7 @@ publish_to: none version: 1.0.0+1 environment: - sdk: ^3.5.0 + sdk: ^3.6.0-0 dependencies: flutter: diff --git a/examples/get-started/flutter-for/android_devs/pubspec.yaml b/examples/get-started/flutter-for/android_devs/pubspec.yaml index bc6299829b5..7ac8af16a6b 100644 --- a/examples/get-started/flutter-for/android_devs/pubspec.yaml +++ b/examples/get-started/flutter-for/android_devs/pubspec.yaml @@ -6,7 +6,7 @@ publish_to: none # Remove this line if you wish to publish to pub.dev version: 1.0.0+1 environment: - sdk: ^3.5.0 + sdk: ^3.6.0-0 dependencies: flutter: diff --git a/examples/get-started/flutter-for/declarative/pubspec.yaml b/examples/get-started/flutter-for/declarative/pubspec.yaml index 229fa45e678..961caa573f2 100644 --- a/examples/get-started/flutter-for/declarative/pubspec.yaml +++ b/examples/get-started/flutter-for/declarative/pubspec.yaml @@ -5,7 +5,7 @@ publish_to: none version: 1.0.0+1 environment: - sdk: ^3.5.0 + sdk: ^3.6.0-0 dependencies: flutter: diff --git a/examples/get-started/flutter-for/ios_devs/pubspec.yaml b/examples/get-started/flutter-for/ios_devs/pubspec.yaml index aabca4a8e74..fd0ac8b0b01 100644 --- a/examples/get-started/flutter-for/ios_devs/pubspec.yaml +++ b/examples/get-started/flutter-for/ios_devs/pubspec.yaml @@ -5,7 +5,7 @@ publish_to: none version: 1.0.0+1 environment: - sdk: ^3.5.0 + sdk: ^3.6.0-0 dependencies: flutter: diff --git a/examples/get-started/flutter-for/react_native_devs/my_widgets/pubspec.yaml b/examples/get-started/flutter-for/react_native_devs/my_widgets/pubspec.yaml index 255f7a24ce0..7706923ea58 100644 --- a/examples/get-started/flutter-for/react_native_devs/my_widgets/pubspec.yaml +++ b/examples/get-started/flutter-for/react_native_devs/my_widgets/pubspec.yaml @@ -3,7 +3,7 @@ description: A library for `react_native_devs` to import. version: 1.0.0 environment: - sdk: ^3.5.0 + sdk: ^3.6.0-0 dev_dependencies: example_utils: diff --git a/examples/get-started/flutter-for/react_native_devs/pubspec.yaml b/examples/get-started/flutter-for/react_native_devs/pubspec.yaml index e13cd3eb2c7..db1503cc7d6 100644 --- a/examples/get-started/flutter-for/react_native_devs/pubspec.yaml +++ b/examples/get-started/flutter-for/react_native_devs/pubspec.yaml @@ -5,7 +5,7 @@ publish_to: none version: 1.0.0+1 environment: - sdk: ^3.5.0 + sdk: ^3.6.0-0 dependencies: flutter: diff --git a/examples/get-started/flutter-for/web_devs/pubspec.yaml b/examples/get-started/flutter-for/web_devs/pubspec.yaml index ea4a2fc03c4..0b8c48b8d28 100644 --- a/examples/get-started/flutter-for/web_devs/pubspec.yaml +++ b/examples/get-started/flutter-for/web_devs/pubspec.yaml @@ -5,7 +5,7 @@ publish_to: none version: 1.0.0+1 environment: - sdk: ^3.5.0 + sdk: ^3.6.0-0 dependencies: flutter: diff --git a/examples/get-started/flutter-for/xamarin_devs/pubspec.yaml b/examples/get-started/flutter-for/xamarin_devs/pubspec.yaml index 2cfdde95a26..536e946b36c 100644 --- a/examples/get-started/flutter-for/xamarin_devs/pubspec.yaml +++ b/examples/get-started/flutter-for/xamarin_devs/pubspec.yaml @@ -5,7 +5,7 @@ publish_to: none version: 1.0.0+1 environment: - sdk: ^3.5.0 + sdk: ^3.6.0-0 dependencies: flutter: diff --git a/examples/googleapis/pubspec.yaml b/examples/googleapis/pubspec.yaml index 9aa4907b5b7..ee2ea3b1788 100644 --- a/examples/googleapis/pubspec.yaml +++ b/examples/googleapis/pubspec.yaml @@ -2,7 +2,7 @@ name: google_sign_in_example publish_to: none environment: - sdk: ^3.5.0 + sdk: ^3.6.0-0 dependencies: collection: any # Pull the version of collection from Flutter. diff --git a/examples/integration_test/pubspec.yaml b/examples/integration_test/pubspec.yaml index cbeb9bb0761..7260b4e9353 100644 --- a/examples/integration_test/pubspec.yaml +++ b/examples/integration_test/pubspec.yaml @@ -3,7 +3,7 @@ publish_to: none version: 0.0.1 environment: - sdk: ^3.5.0 + sdk: ^3.6.0-0 dependencies: flutter: diff --git a/examples/integration_test_migration/pubspec.yaml b/examples/integration_test_migration/pubspec.yaml index 19ad4dc5e77..709ee7499c2 100644 --- a/examples/integration_test_migration/pubspec.yaml +++ b/examples/integration_test_migration/pubspec.yaml @@ -5,7 +5,7 @@ publish_to: none version: 1.0.0+1 environment: - sdk: ^3.5.0 + sdk: ^3.6.0-0 dependencies: flutter: diff --git a/examples/internationalization/add_language/pubspec.yaml b/examples/internationalization/add_language/pubspec.yaml index fab91909269..2d9eaa1dfe3 100644 --- a/examples/internationalization/add_language/pubspec.yaml +++ b/examples/internationalization/add_language/pubspec.yaml @@ -2,7 +2,7 @@ name: add_language description: An i18n app example that adds a supported language environment: - sdk: ^3.5.0 + sdk: ^3.6.0-0 dependencies: flutter: diff --git a/examples/internationalization/gen_l10n_example/pubspec.yaml b/examples/internationalization/gen_l10n_example/pubspec.yaml index b12d258fd77..00f3d0c68d5 100644 --- a/examples/internationalization/gen_l10n_example/pubspec.yaml +++ b/examples/internationalization/gen_l10n_example/pubspec.yaml @@ -4,7 +4,7 @@ description: >- Example of an internationalized Flutter app that uses `flutter gen-l10n`. environment: - sdk: ^3.5.0 + sdk: ^3.6.0-0 # #docregion flutter-localizations dependencies: diff --git a/examples/internationalization/intl_example/pubspec.yaml b/examples/internationalization/intl_example/pubspec.yaml index 5d3ef732b14..87e930c7a56 100644 --- a/examples/internationalization/intl_example/pubspec.yaml +++ b/examples/internationalization/intl_example/pubspec.yaml @@ -2,7 +2,7 @@ name: intl_example description: Example of a Flutter app using the intl library services. environment: - sdk: ^3.5.0 + sdk: ^3.6.0-0 dependencies: flutter: diff --git a/examples/internationalization/minimal/pubspec.yaml b/examples/internationalization/minimal/pubspec.yaml index d718cc2566b..7c3b2d9de16 100644 --- a/examples/internationalization/minimal/pubspec.yaml +++ b/examples/internationalization/minimal/pubspec.yaml @@ -2,7 +2,7 @@ name: l10n_example description: A minimal example of a localized Flutter app environment: - sdk: ^3.5.0 + sdk: ^3.6.0-0 dependencies: flutter: diff --git a/examples/layout/base/pubspec.yaml b/examples/layout/base/pubspec.yaml index 2169f959bb5..9c1b222b199 100644 --- a/examples/layout/base/pubspec.yaml +++ b/examples/layout/base/pubspec.yaml @@ -4,7 +4,7 @@ description: > version: 1.0.0 environment: - sdk: ^3.5.0 + sdk: ^3.6.0-0 dependencies: flutter: diff --git a/examples/layout/card_and_stack/pubspec.yaml b/examples/layout/card_and_stack/pubspec.yaml index be031f6b0bc..32ab08f6f40 100644 --- a/examples/layout/card_and_stack/pubspec.yaml +++ b/examples/layout/card_and_stack/pubspec.yaml @@ -4,7 +4,7 @@ description: >- version: 1.0.0 environment: - sdk: ^3.5.0 + sdk: ^3.6.0-0 dependencies: flutter: diff --git a/examples/layout/constraints/pubspec.yaml b/examples/layout/constraints/pubspec.yaml index 9437877dccc..ef471d1ce5b 100644 --- a/examples/layout/constraints/pubspec.yaml +++ b/examples/layout/constraints/pubspec.yaml @@ -3,7 +3,7 @@ description: example for ui/layout/constraints version: 1.0.0 environment: - sdk: ^3.5.0 + sdk: ^3.6.0-0 dependencies: flutter: diff --git a/examples/layout/container/pubspec.yaml b/examples/layout/container/pubspec.yaml index a00ee385b4a..c9cdd343cdc 100644 --- a/examples/layout/container/pubspec.yaml +++ b/examples/layout/container/pubspec.yaml @@ -4,7 +4,7 @@ description: >- version: 1.0.0 environment: - sdk: ^3.5.0 + sdk: ^3.6.0-0 dependencies: flutter: diff --git a/examples/layout/grid_and_list/pubspec.yaml b/examples/layout/grid_and_list/pubspec.yaml index be031f6b0bc..32ab08f6f40 100644 --- a/examples/layout/grid_and_list/pubspec.yaml +++ b/examples/layout/grid_and_list/pubspec.yaml @@ -4,7 +4,7 @@ description: >- version: 1.0.0 environment: - sdk: ^3.5.0 + sdk: ^3.6.0-0 dependencies: flutter: diff --git a/examples/layout/lakes/interactive/pubspec.yaml b/examples/layout/lakes/interactive/pubspec.yaml index 7ffeabac7b8..ce9d0e489d4 100644 --- a/examples/layout/lakes/interactive/pubspec.yaml +++ b/examples/layout/lakes/interactive/pubspec.yaml @@ -5,7 +5,7 @@ description: >- version: 1.0.0 environment: - sdk: ^3.5.0 + sdk: ^3.6.0-0 dependencies: flutter: diff --git a/examples/layout/lakes/step2/pubspec.yaml b/examples/layout/lakes/step2/pubspec.yaml index df64fc0872e..00d323d756e 100644 --- a/examples/layout/lakes/step2/pubspec.yaml +++ b/examples/layout/lakes/step2/pubspec.yaml @@ -4,7 +4,7 @@ description: >- version: 1.0.0 environment: - sdk: ^3.5.0 + sdk: ^3.6.0-0 dependencies: flutter: diff --git a/examples/layout/lakes/step3/pubspec.yaml b/examples/layout/lakes/step3/pubspec.yaml index df64fc0872e..00d323d756e 100644 --- a/examples/layout/lakes/step3/pubspec.yaml +++ b/examples/layout/lakes/step3/pubspec.yaml @@ -4,7 +4,7 @@ description: >- version: 1.0.0 environment: - sdk: ^3.5.0 + sdk: ^3.6.0-0 dependencies: flutter: diff --git a/examples/layout/lakes/step4/pubspec.yaml b/examples/layout/lakes/step4/pubspec.yaml index df64fc0872e..00d323d756e 100644 --- a/examples/layout/lakes/step4/pubspec.yaml +++ b/examples/layout/lakes/step4/pubspec.yaml @@ -4,7 +4,7 @@ description: >- version: 1.0.0 environment: - sdk: ^3.5.0 + sdk: ^3.6.0-0 dependencies: flutter: diff --git a/examples/layout/lakes/step5/pubspec.yaml b/examples/layout/lakes/step5/pubspec.yaml index 2a93b995133..f4dab942623 100644 --- a/examples/layout/lakes/step5/pubspec.yaml +++ b/examples/layout/lakes/step5/pubspec.yaml @@ -4,7 +4,7 @@ description: >- version: 1.0.0 environment: - sdk: ^3.5.0 + sdk: ^3.6.0-0 dependencies: flutter: diff --git a/examples/layout/lakes/step6/pubspec.yaml b/examples/layout/lakes/step6/pubspec.yaml index 2a93b995133..f4dab942623 100644 --- a/examples/layout/lakes/step6/pubspec.yaml +++ b/examples/layout/lakes/step6/pubspec.yaml @@ -4,7 +4,7 @@ description: >- version: 1.0.0 environment: - sdk: ^3.5.0 + sdk: ^3.6.0-0 dependencies: flutter: diff --git a/examples/layout/non_material/pubspec.yaml b/examples/layout/non_material/pubspec.yaml index 5ff2332fdf7..cdb2ce23f14 100644 --- a/examples/layout/non_material/pubspec.yaml +++ b/examples/layout/non_material/pubspec.yaml @@ -4,7 +4,7 @@ description: >- version: 1.0.0 environment: - sdk: ^3.5.0 + sdk: ^3.6.0-0 dependencies: flutter: diff --git a/examples/layout/pavlova/pubspec.yaml b/examples/layout/pavlova/pubspec.yaml index 06c650c46d2..7746a6188d6 100644 --- a/examples/layout/pavlova/pubspec.yaml +++ b/examples/layout/pavlova/pubspec.yaml @@ -4,7 +4,7 @@ description: >- version: 1.0.0 environment: - sdk: ^3.5.0 + sdk: ^3.6.0-0 dependencies: flutter: diff --git a/examples/layout/row_column/pubspec.yaml b/examples/layout/row_column/pubspec.yaml index d79d5673997..1609ce56a38 100644 --- a/examples/layout/row_column/pubspec.yaml +++ b/examples/layout/row_column/pubspec.yaml @@ -4,7 +4,7 @@ description: >- version: 1.0.0 environment: - sdk: ^3.5.0 + sdk: ^3.6.0-0 dependencies: flutter: diff --git a/examples/layout/sizing/pubspec.yaml b/examples/layout/sizing/pubspec.yaml index d79d5673997..1609ce56a38 100644 --- a/examples/layout/sizing/pubspec.yaml +++ b/examples/layout/sizing/pubspec.yaml @@ -4,7 +4,7 @@ description: >- version: 1.0.0 environment: - sdk: ^3.5.0 + sdk: ^3.6.0-0 dependencies: flutter: diff --git a/examples/perf/concurrency/isolates/pubspec.yaml b/examples/perf/concurrency/isolates/pubspec.yaml index d1d19e20f15..070b34da84f 100644 --- a/examples/perf/concurrency/isolates/pubspec.yaml +++ b/examples/perf/concurrency/isolates/pubspec.yaml @@ -5,7 +5,7 @@ publish_to: none version: 1.0.0+1 environment: - sdk: ^3.5.0 + sdk: ^3.6.0-0 dependencies: flutter: diff --git a/examples/perf/deferred_components/pubspec.yaml b/examples/perf/deferred_components/pubspec.yaml index 0c0a92c3e0a..f7dd408a474 100644 --- a/examples/perf/deferred_components/pubspec.yaml +++ b/examples/perf/deferred_components/pubspec.yaml @@ -3,7 +3,7 @@ description: Samples to showcase deferred component imports/loading. publish_to: none environment: - sdk: ^3.5.0 + sdk: ^3.6.0-0 dependencies: flutter: diff --git a/examples/platform_integration/compose_activities/pubspec.yaml b/examples/platform_integration/compose_activities/pubspec.yaml index a764cee8e4e..ee4c6189126 100644 --- a/examples/platform_integration/compose_activities/pubspec.yaml +++ b/examples/platform_integration/compose_activities/pubspec.yaml @@ -6,7 +6,7 @@ publish_to: none version: 1.0.0+1 environment: - sdk: ^3.5.0 + sdk: ^3.6.0-0 dependencies: flutter: diff --git a/examples/platform_integration/pigeon/pubspec.yaml b/examples/platform_integration/pigeon/pubspec.yaml index 901a088b44c..d31be5eb471 100644 --- a/examples/platform_integration/pigeon/pubspec.yaml +++ b/examples/platform_integration/pigeon/pubspec.yaml @@ -6,7 +6,7 @@ publish_to: none version: 1.0.0+1 environment: - sdk: ^3.5.0 + sdk: ^3.6.0-0 dependencies: flutter: diff --git a/examples/platform_integration/platform_channels/pubspec.yaml b/examples/platform_integration/platform_channels/pubspec.yaml index 39bc9bf11aa..4d60079d657 100644 --- a/examples/platform_integration/platform_channels/pubspec.yaml +++ b/examples/platform_integration/platform_channels/pubspec.yaml @@ -8,7 +8,7 @@ publish_to: none version: 1.0.0+1 environment: - sdk: ^3.5.0 + sdk: ^3.6.0-0 dependencies: flutter: diff --git a/examples/platform_integration/platform_views/pubspec.yaml b/examples/platform_integration/platform_views/pubspec.yaml index 7be53eee38a..39a01f75e8f 100644 --- a/examples/platform_integration/platform_views/pubspec.yaml +++ b/examples/platform_integration/platform_views/pubspec.yaml @@ -6,7 +6,7 @@ publish_to: none version: 1.0.0+1 environment: - sdk: ^3.5.0 + sdk: ^3.6.0-0 dependencies: flutter: diff --git a/examples/platform_integration/plugin_api_migration/pubspec.yaml b/examples/platform_integration/plugin_api_migration/pubspec.yaml index 55bb46592cd..3de5cabe9e3 100644 --- a/examples/platform_integration/plugin_api_migration/pubspec.yaml +++ b/examples/platform_integration/plugin_api_migration/pubspec.yaml @@ -6,7 +6,7 @@ publish_to: none version: 1.0.0+1 environment: - sdk: ^3.5.0 + sdk: ^3.6.0-0 dependencies: flutter: diff --git a/examples/resources/architectural_overview/pubspec.yaml b/examples/resources/architectural_overview/pubspec.yaml index ccd0f14e907..024de92ad4c 100644 --- a/examples/resources/architectural_overview/pubspec.yaml +++ b/examples/resources/architectural_overview/pubspec.yaml @@ -3,7 +3,7 @@ description: Samples for the Flutter architectural overview. publish_to: none environment: - sdk: ^3.5.0 + sdk: ^3.6.0-0 dependencies: flutter: diff --git a/examples/resources/dart_swift_concurrency/pubspec.yaml b/examples/resources/dart_swift_concurrency/pubspec.yaml index c9e17aa21e1..5db0c94ff65 100644 --- a/examples/resources/dart_swift_concurrency/pubspec.yaml +++ b/examples/resources/dart_swift_concurrency/pubspec.yaml @@ -3,7 +3,7 @@ description: Examples for the Flutter concurrency for Swift developers article. publish_to: none environment: - sdk: ^3.5.0 + sdk: ^3.6.0-0 dependencies: flutter: diff --git a/examples/state_mgmt/simple/pubspec.yaml b/examples/state_mgmt/simple/pubspec.yaml index 9600c56be71..1c740fa633e 100644 --- a/examples/state_mgmt/simple/pubspec.yaml +++ b/examples/state_mgmt/simple/pubspec.yaml @@ -3,7 +3,7 @@ description: Sample state management code. publish_to: none environment: - sdk: ^3.5.0 + sdk: ^3.6.0-0 dependencies: flutter: diff --git a/examples/testing/code_debugging/pubspec.yaml b/examples/testing/code_debugging/pubspec.yaml index 9b2c8ebabfe..85a9a1c7ec2 100644 --- a/examples/testing/code_debugging/pubspec.yaml +++ b/examples/testing/code_debugging/pubspec.yaml @@ -3,7 +3,7 @@ description: Examples to illustrate debugging your Flutter code. publish_to: none environment: - sdk: ^3.5.0 + sdk: ^3.6.0-0 dependencies: flutter: diff --git a/examples/testing/common_errors/pubspec.yaml b/examples/testing/common_errors/pubspec.yaml index 1bd7a8ec89f..14cbd03f321 100644 --- a/examples/testing/common_errors/pubspec.yaml +++ b/examples/testing/common_errors/pubspec.yaml @@ -3,7 +3,7 @@ description: Excerpts for common Flutter errors. publish_to: none environment: - sdk: ^3.5.0 + sdk: ^3.6.0-0 dependencies: flutter: diff --git a/examples/testing/errors/pubspec.yaml b/examples/testing/errors/pubspec.yaml index 8561d8d3a85..d2418f94964 100644 --- a/examples/testing/errors/pubspec.yaml +++ b/examples/testing/errors/pubspec.yaml @@ -3,7 +3,7 @@ description: An error handling example. publish_to: none environment: - sdk: ^3.5.0 + sdk: ^3.6.0-0 dependencies: flutter: diff --git a/examples/testing/integration_tests/how_to/pubspec.yaml b/examples/testing/integration_tests/how_to/pubspec.yaml index f5ff8e9ed7f..01fdc30f6d4 100644 --- a/examples/testing/integration_tests/how_to/pubspec.yaml +++ b/examples/testing/integration_tests/how_to/pubspec.yaml @@ -3,7 +3,7 @@ description: An example of setting up an integration test. publish_to: none environment: - sdk: ^3.5.0 + sdk: ^3.6.0-0 dependencies: flutter: diff --git a/examples/testing/native_debugging/pubspec.yaml b/examples/testing/native_debugging/pubspec.yaml index f7d992137ae..72ff03ba123 100644 --- a/examples/testing/native_debugging/pubspec.yaml +++ b/examples/testing/native_debugging/pubspec.yaml @@ -1,11 +1,11 @@ name: native_debugging description: Demonstration of native code debugging -sdk: ^3.5.0 +sdk: ^3.6.0-0 version: 1.0.0+1 environment: - sdk: ^3.5.0 + sdk: ^3.6.0-0 dependencies: flutter: diff --git a/examples/tools/pubspec.yaml b/examples/tools/pubspec.yaml index c45d9376e71..93fb1d2fea0 100644 --- a/examples/tools/pubspec.yaml +++ b/examples/tools/pubspec.yaml @@ -6,7 +6,7 @@ publish_to: none version: 1.0.0+1 environment: - sdk: ^3.5.0 + sdk: ^3.6.0-0 dependencies: flutter: diff --git a/examples/ui/adaptive_app_demos/pubspec.yaml b/examples/ui/adaptive_app_demos/pubspec.yaml index 69e8cdd7d1c..e81ae4c0278 100644 --- a/examples/ui/adaptive_app_demos/pubspec.yaml +++ b/examples/ui/adaptive_app_demos/pubspec.yaml @@ -3,7 +3,7 @@ description: Demo code for adaptive app development techniques. publish_to: none environment: - sdk: ^3.5.0 + sdk: ^3.6.0-0 dependencies: flutter: diff --git a/examples/ui/advanced/actions_and_shortcuts/pubspec.yaml b/examples/ui/advanced/actions_and_shortcuts/pubspec.yaml index 93bdc07c3a5..d79ddf0b1ea 100644 --- a/examples/ui/advanced/actions_and_shortcuts/pubspec.yaml +++ b/examples/ui/advanced/actions_and_shortcuts/pubspec.yaml @@ -3,7 +3,7 @@ description: Sample actions and shortcuts code. publish_to: none environment: - sdk: ^3.5.0 + sdk: ^3.6.0-0 dependencies: flutter: diff --git a/examples/ui/advanced/focus/pubspec.yaml b/examples/ui/advanced/focus/pubspec.yaml index c607bb553c7..a07704b1323 100644 --- a/examples/ui/advanced/focus/pubspec.yaml +++ b/examples/ui/advanced/focus/pubspec.yaml @@ -3,7 +3,7 @@ description: Sample focus system code. publish_to: none environment: - sdk: ^3.5.0 + sdk: ^3.6.0-0 dependencies: flutter: diff --git a/examples/ui/assets_and_images/pubspec.yaml b/examples/ui/assets_and_images/pubspec.yaml index 57e234ede07..d00839b072f 100644 --- a/examples/ui/assets_and_images/pubspec.yaml +++ b/examples/ui/assets_and_images/pubspec.yaml @@ -3,7 +3,7 @@ description: An example project showing how to declare and load assets. publish_to: none environment: - sdk: ^3.5.0 + sdk: ^3.6.0-0 dependencies: flutter: diff --git a/examples/ui/interactive/pubspec.yaml b/examples/ui/interactive/pubspec.yaml index 83c79b60f12..03de4deb1f6 100644 --- a/examples/ui/interactive/pubspec.yaml +++ b/examples/ui/interactive/pubspec.yaml @@ -2,7 +2,7 @@ name: interactive description: Sample code for interactive.md environment: - sdk: ^3.5.0 + sdk: ^3.6.0-0 dependencies: flutter: diff --git a/examples/ui/widgets_intro/pubspec.yaml b/examples/ui/widgets_intro/pubspec.yaml index afc3b40e76c..f9e0a2e24d3 100644 --- a/examples/ui/widgets_intro/pubspec.yaml +++ b/examples/ui/widgets_intro/pubspec.yaml @@ -3,7 +3,7 @@ description: Sample state management code. publish_to: none environment: - sdk: ^3.5.0 + sdk: ^3.6.0-0 dependencies: flutter: diff --git a/examples/visual_debugging/pubspec.yaml b/examples/visual_debugging/pubspec.yaml index 15b8196f2bf..94de2873f65 100644 --- a/examples/visual_debugging/pubspec.yaml +++ b/examples/visual_debugging/pubspec.yaml @@ -3,7 +3,7 @@ publish_to: none description: Examples of visual debugging. environment: - sdk: ^3.5.0 + sdk: ^3.6.0-0 dependencies: flutter: diff --git a/pubspec.yaml b/pubspec.yaml index cd386b0758d..5c41d70368d 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -2,7 +2,7 @@ name: docs_flutter_dev publish_to: none environment: - sdk: ^3.5.0 + sdk: ^3.6.0-0 dev_dependencies: flutter_site: diff --git a/src/content/tools/pubspec.md b/src/content/tools/pubspec.md index fba92b946b8..70c1e99323a 100644 --- a/src/content/tools/pubspec.md +++ b/src/content/tools/pubspec.md @@ -64,7 +64,7 @@ publish_to: none version: 1.0.0+1 environment: - sdk: ^3.5.0 + sdk: ^3.6.0 dependencies: [!flutter:!] # Required for every Flutter project diff --git a/tool/flutter_site/pubspec.yaml b/tool/flutter_site/pubspec.yaml index be85d9e1d3a..5e8fe677221 100644 --- a/tool/flutter_site/pubspec.yaml +++ b/tool/flutter_site/pubspec.yaml @@ -3,7 +3,7 @@ description: Dart-based tools for building docs.flutter.dev. publish_to: none environment: - sdk: ^3.5.0 + sdk: ^3.6.0-0 dependencies: args: ^2.4.2 From 55bc931b7bf22a1193b61d6c271dcd1fb0433abf Mon Sep 17 00:00:00 2001 From: Parker Lougheed Date: Wed, 16 Oct 2024 17:37:47 -0500 Subject: [PATCH 3/7] Mark beta channel as not experimental for CI testing --- .github/workflows/test.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 566bc279f88..5f27d4b2e60 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -27,10 +27,10 @@ jobs: include: - name: "Beta channel" branch: beta - experimental: true + experimental: false - name: "Stable channel" branch: stable - experimental: false + experimental: true continue-on-error: ${{ matrix.experimental }} steps: - uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 From 51125ef56dae51d20a1c13192792aec480b1fb62 Mon Sep 17 00:00:00 2001 From: Parker Lougheed Date: Wed, 16 Oct 2024 17:41:29 -0500 Subject: [PATCH 4/7] Use beta SDK for workflows --- .github/workflows/test.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 5f27d4b2e60..4a5fca9bcce 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -62,7 +62,7 @@ jobs: submodules: recursive - uses: dart-lang/setup-dart@0a8a0fc875eb934c15d08629302413c671d3f672 with: - sdk: stable + sdk: beta - name: Fetch Dart dependencies run: dart pub get - name: Check if excerpts are up to date @@ -88,7 +88,7 @@ jobs: run: pnpm install --frozen-lockfile - uses: dart-lang/setup-dart@0a8a0fc875eb934c15d08629302413c671d3f672 with: - sdk: stable + sdk: beta - name: Fetch Dart dependencies run: dart pub get - name: Build site @@ -108,7 +108,7 @@ jobs: submodules: recursive - uses: dart-lang/setup-dart@0a8a0fc875eb934c15d08629302413c671d3f672 with: - sdk: stable + sdk: beta - name: Fetch Dart dependencies run: dart pub get - name: Validate the firebase.json file From d3d26454700bc8c7f8b6ed5c122c414f5819bbe6 Mon Sep 17 00:00:00 2001 From: Parker Lougheed Date: Thu, 12 Dec 2024 03:19:25 +0800 Subject: [PATCH 5/7] Flip experimental status --- .github/workflows/test.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index faf9f7911b9..4b7d56f03b1 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -27,10 +27,10 @@ jobs: include: - name: "Beta channel" branch: beta - experimental: false + experimental: true - name: "Stable channel" branch: stable - experimental: true + experimental: false continue-on-error: ${{ matrix.experimental }} steps: - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 From 9e64ab830cad74898a0361927a1f1c50a9c44979 Mon Sep 17 00:00:00 2001 From: Parker Lougheed Date: Thu, 12 Dec 2024 03:19:37 +0800 Subject: [PATCH 6/7] Update version in data file --- src/_data/site.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/_data/site.yml b/src/_data/site.yml index 64dcfb84722..d6278332e74 100644 --- a/src/_data/site.yml +++ b/src/_data/site.yml @@ -91,7 +91,7 @@ targetmin: ## Software current versions appnow: - flutter: '3.24.5' + flutter: '3.27.0' vscode: '1.95' android_studio: '2024.2' android_sdk: '35.0.1' From fa313248cacc33914b103deae2580449f9f1607f Mon Sep 17 00:00:00 2001 From: Parker Lougheed Date: Thu, 12 Dec 2024 03:20:13 +0800 Subject: [PATCH 7/7] Use stable SDK constraint --- examples/_animation/basic_hero_animation/pubspec.yaml | 2 +- examples/_animation/basic_radial_hero_animation/pubspec.yaml | 2 +- examples/_animation/basic_staggered_animation/pubspec.yaml | 2 +- examples/_animation/hero_animation/pubspec.yaml | 2 +- examples/_animation/radial_hero_animation/pubspec.yaml | 2 +- .../radial_hero_animation_animate_rectclip/pubspec.yaml | 2 +- examples/_animation/staggered_pic_selection/pubspec.yaml | 2 +- examples/accessibility/pubspec.yaml | 2 +- examples/animation/animate0/pubspec.yaml | 2 +- examples/animation/animate1/pubspec.yaml | 2 +- examples/animation/animate2/pubspec.yaml | 2 +- examples/animation/animate3/pubspec.yaml | 2 +- examples/animation/animate4/pubspec.yaml | 2 +- examples/animation/animate5/pubspec.yaml | 2 +- examples/animation/implicit/pubspec.yaml | 2 +- examples/cookbook/animation/animated_container/pubspec.yaml | 2 +- examples/cookbook/animation/opacity_animation/pubspec.yaml | 2 +- examples/cookbook/animation/page_route_animation/pubspec.yaml | 2 +- examples/cookbook/animation/physics_simulation/pubspec.yaml | 2 +- examples/cookbook/design/drawer/pubspec.yaml | 2 +- examples/cookbook/design/fonts/pubspec.yaml | 2 +- examples/cookbook/design/orientation/pubspec.yaml | 2 +- examples/cookbook/design/package_fonts/pubspec.yaml | 2 +- examples/cookbook/design/snackbars/pubspec.yaml | 2 +- examples/cookbook/design/tabs/pubspec.yaml | 2 +- examples/cookbook/design/themes/pubspec.yaml | 2 +- examples/cookbook/effects/download_button/pubspec.yaml | 2 +- examples/cookbook/effects/drag_a_widget/pubspec.yaml | 2 +- examples/cookbook/effects/expandable_fab/pubspec.yaml | 2 +- examples/cookbook/effects/gradient_bubbles/pubspec.yaml | 2 +- examples/cookbook/effects/nested_nav/pubspec.yaml | 2 +- examples/cookbook/effects/parallax_scrolling/pubspec.yaml | 2 +- examples/cookbook/effects/shimmer_loading/pubspec.yaml | 2 +- .../cookbook/effects/staggered_menu_animation/pubspec.yaml | 2 +- examples/cookbook/effects/typing_indicator/pubspec.yaml | 2 +- examples/cookbook/forms/focus/pubspec.yaml | 2 +- examples/cookbook/forms/retrieve_input/pubspec.yaml | 2 +- examples/cookbook/forms/text_field_changes/pubspec.yaml | 2 +- examples/cookbook/forms/text_input/pubspec.yaml | 2 +- examples/cookbook/forms/validation/pubspec.yaml | 2 +- .../cookbook/games/achievements_leaderboards/pubspec.yaml | 2 +- examples/cookbook/games/firestore_multiplayer/pubspec.yaml | 2 +- examples/cookbook/gestures/dismissible/pubspec.yaml | 2 +- examples/cookbook/gestures/handling_taps/pubspec.yaml | 2 +- examples/cookbook/gestures/ripples/pubspec.yaml | 2 +- examples/cookbook/images/cached_images/pubspec.yaml | 2 +- examples/cookbook/images/fading_in_images/pubspec.yaml | 2 +- examples/cookbook/images/network_image/pubspec.yaml | 2 +- examples/cookbook/lists/basic_list/pubspec.yaml | 2 +- examples/cookbook/lists/floating_app_bar/pubspec.yaml | 2 +- examples/cookbook/lists/grid_lists/pubspec.yaml | 2 +- examples/cookbook/lists/horizontal_list/pubspec.yaml | 2 +- examples/cookbook/lists/long_lists/pubspec.yaml | 2 +- examples/cookbook/lists/mixed_list/pubspec.yaml | 2 +- examples/cookbook/lists/spaced_items/pubspec.yaml | 2 +- examples/cookbook/maintenance/error_reporting/pubspec.yaml | 2 +- examples/cookbook/navigation/hero_animations/pubspec.yaml | 2 +- examples/cookbook/navigation/named_routes/pubspec.yaml | 2 +- .../cookbook/navigation/navigate_with_arguments/pubspec.yaml | 2 +- examples/cookbook/navigation/navigation_basics/pubspec.yaml | 2 +- examples/cookbook/navigation/passing_data/pubspec.yaml | 2 +- examples/cookbook/navigation/returning_data/pubspec.yaml | 2 +- .../cookbook/networking/authenticated_requests/pubspec.yaml | 2 +- examples/cookbook/networking/background_parsing/pubspec.yaml | 2 +- examples/cookbook/networking/delete_data/pubspec.yaml | 2 +- examples/cookbook/networking/fetch_data/pubspec.yaml | 2 +- examples/cookbook/networking/send_data/pubspec.yaml | 2 +- examples/cookbook/networking/update_data/pubspec.yaml | 2 +- examples/cookbook/networking/web_sockets/pubspec.yaml | 2 +- examples/cookbook/persistence/key_value/pubspec.yaml | 2 +- .../cookbook/persistence/reading_writing_files/pubspec.yaml | 2 +- examples/cookbook/persistence/sqlite/pubspec.yaml | 2 +- examples/cookbook/plugins/google_mobile_ads/pubspec.yaml | 2 +- examples/cookbook/plugins/picture_using_camera/pubspec.yaml | 2 +- examples/cookbook/plugins/play_video/pubspec.yaml | 2 +- .../cookbook/testing/integration/introduction/pubspec.yaml | 2 +- examples/cookbook/testing/integration/profiling/pubspec.yaml | 2 +- examples/cookbook/testing/unit/counter_app/pubspec.yaml | 2 +- examples/cookbook/testing/unit/mocking/pubspec.yaml | 2 +- examples/cookbook/testing/widget/finders/pubspec.yaml | 2 +- examples/cookbook/testing/widget/introduction/pubspec.yaml | 2 +- examples/cookbook/testing/widget/scrolling/pubspec.yaml | 2 +- examples/cookbook/testing/widget/tap_drag/pubspec.yaml | 2 +- examples/data-and-backend/json/pubspec.yaml | 2 +- examples/deployment/obfuscate/pubspec.yaml | 2 +- examples/example_utils/pubspec.yaml | 2 +- examples/get-started/codelab_web/pubspec.yaml | 2 +- examples/get-started/flutter-for/android_devs/pubspec.yaml | 2 +- examples/get-started/flutter-for/declarative/pubspec.yaml | 2 +- examples/get-started/flutter-for/ios_devs/pubspec.yaml | 2 +- .../flutter-for/react_native_devs/my_widgets/pubspec.yaml | 2 +- .../get-started/flutter-for/react_native_devs/pubspec.yaml | 2 +- examples/get-started/flutter-for/web_devs/pubspec.yaml | 2 +- examples/get-started/flutter-for/xamarin_devs/pubspec.yaml | 2 +- examples/googleapis/pubspec.yaml | 2 +- examples/integration_test/pubspec.yaml | 2 +- examples/integration_test_migration/pubspec.yaml | 2 +- examples/internationalization/add_language/pubspec.yaml | 2 +- examples/internationalization/gen_l10n_example/pubspec.yaml | 2 +- examples/internationalization/intl_example/pubspec.yaml | 2 +- examples/internationalization/minimal/pubspec.yaml | 2 +- examples/layout/base/pubspec.yaml | 2 +- examples/layout/card_and_stack/pubspec.yaml | 2 +- examples/layout/constraints/pubspec.yaml | 2 +- examples/layout/container/pubspec.yaml | 2 +- examples/layout/grid_and_list/pubspec.yaml | 2 +- examples/layout/lakes/interactive/pubspec.yaml | 2 +- examples/layout/lakes/step2/pubspec.yaml | 2 +- examples/layout/lakes/step3/pubspec.yaml | 2 +- examples/layout/lakes/step4/pubspec.yaml | 2 +- examples/layout/lakes/step5/pubspec.yaml | 2 +- examples/layout/lakes/step6/pubspec.yaml | 2 +- examples/layout/non_material/pubspec.yaml | 2 +- examples/layout/pavlova/pubspec.yaml | 2 +- examples/layout/row_column/pubspec.yaml | 2 +- examples/layout/sizing/pubspec.yaml | 2 +- examples/perf/concurrency/isolates/pubspec.yaml | 2 +- examples/perf/deferred_components/pubspec.yaml | 2 +- examples/platform_integration/compose_activities/pubspec.yaml | 2 +- examples/platform_integration/pigeon/pubspec.yaml | 2 +- examples/platform_integration/platform_channels/pubspec.yaml | 2 +- examples/platform_integration/platform_views/pubspec.yaml | 2 +- .../platform_integration/plugin_api_migration/pubspec.yaml | 2 +- examples/resources/architectural_overview/pubspec.yaml | 2 +- examples/resources/dart_swift_concurrency/pubspec.yaml | 2 +- examples/state_mgmt/simple/pubspec.yaml | 2 +- examples/testing/code_debugging/pubspec.yaml | 2 +- examples/testing/common_errors/pubspec.yaml | 2 +- examples/testing/errors/pubspec.yaml | 2 +- examples/testing/integration_tests/how_to/pubspec.yaml | 2 +- examples/testing/native_debugging/pubspec.yaml | 4 ++-- examples/tools/pubspec.yaml | 2 +- examples/ui/adaptive_app_demos/pubspec.yaml | 2 +- examples/ui/advanced/actions_and_shortcuts/pubspec.yaml | 2 +- examples/ui/advanced/focus/pubspec.yaml | 2 +- examples/ui/assets_and_images/pubspec.yaml | 2 +- examples/ui/interactive/pubspec.yaml | 2 +- examples/ui/widgets_intro/pubspec.yaml | 2 +- examples/visual_debugging/pubspec.yaml | 2 +- pubspec.yaml | 2 +- tool/flutter_site/pubspec.yaml | 2 +- 141 files changed, 142 insertions(+), 142 deletions(-) diff --git a/examples/_animation/basic_hero_animation/pubspec.yaml b/examples/_animation/basic_hero_animation/pubspec.yaml index 691b57a122a..dc6089ff586 100644 --- a/examples/_animation/basic_hero_animation/pubspec.yaml +++ b/examples/_animation/basic_hero_animation/pubspec.yaml @@ -4,7 +4,7 @@ description: >- Shows how to create a simple or Hero animation using the Hero class directly. environment: - sdk: ^3.6.0-0 + sdk: ^3.6.0 dependencies: flutter: diff --git a/examples/_animation/basic_radial_hero_animation/pubspec.yaml b/examples/_animation/basic_radial_hero_animation/pubspec.yaml index 689b63af774..ebe775d72d9 100644 --- a/examples/_animation/basic_radial_hero_animation/pubspec.yaml +++ b/examples/_animation/basic_radial_hero_animation/pubspec.yaml @@ -5,7 +5,7 @@ description: >- as it animates to the new route. environment: - sdk: ^3.6.0-0 + sdk: ^3.6.0 dependencies: flutter: diff --git a/examples/_animation/basic_staggered_animation/pubspec.yaml b/examples/_animation/basic_staggered_animation/pubspec.yaml index a33b16b49be..e8a0e0e7eef 100644 --- a/examples/_animation/basic_staggered_animation/pubspec.yaml +++ b/examples/_animation/basic_staggered_animation/pubspec.yaml @@ -3,7 +3,7 @@ publish_to: none description: An introductory example to staggered animations. environment: - sdk: ^3.6.0-0 + sdk: ^3.6.0 dependencies: flutter: diff --git a/examples/_animation/hero_animation/pubspec.yaml b/examples/_animation/hero_animation/pubspec.yaml index b607be133c9..35cb549b1b3 100644 --- a/examples/_animation/hero_animation/pubspec.yaml +++ b/examples/_animation/hero_animation/pubspec.yaml @@ -3,7 +3,7 @@ publish_to: none description: Shows how to create a simple Hero transition. environment: - sdk: ^3.6.0-0 + sdk: ^3.6.0 dependencies: flutter: diff --git a/examples/_animation/radial_hero_animation/pubspec.yaml b/examples/_animation/radial_hero_animation/pubspec.yaml index d3bf610d87f..da3aa8726f3 100644 --- a/examples/_animation/radial_hero_animation/pubspec.yaml +++ b/examples/_animation/radial_hero_animation/pubspec.yaml @@ -5,7 +5,7 @@ description: >- as it animates to the new route. environment: - sdk: ^3.6.0-0 + sdk: ^3.6.0 dependencies: flutter: diff --git a/examples/_animation/radial_hero_animation_animate_rectclip/pubspec.yaml b/examples/_animation/radial_hero_animation_animate_rectclip/pubspec.yaml index 8e510c70d56..59b4ba24c34 100644 --- a/examples/_animation/radial_hero_animation_animate_rectclip/pubspec.yaml +++ b/examples/_animation/radial_hero_animation_animate_rectclip/pubspec.yaml @@ -5,7 +5,7 @@ description: >- as it animates to the new route. environment: - sdk: ^3.6.0-0 + sdk: ^3.6.0 dependencies: flutter: diff --git a/examples/_animation/staggered_pic_selection/pubspec.yaml b/examples/_animation/staggered_pic_selection/pubspec.yaml index fb2fadbfa84..0666c05313c 100644 --- a/examples/_animation/staggered_pic_selection/pubspec.yaml +++ b/examples/_animation/staggered_pic_selection/pubspec.yaml @@ -3,7 +3,7 @@ publish_to: none description: A more complex staggered animation example. environment: - sdk: ^3.6.0-0 + sdk: ^3.6.0 dependencies: flutter: diff --git a/examples/accessibility/pubspec.yaml b/examples/accessibility/pubspec.yaml index af4db1a417f..bc3357cb670 100644 --- a/examples/accessibility/pubspec.yaml +++ b/examples/accessibility/pubspec.yaml @@ -4,7 +4,7 @@ version: 1.0.0 publish_to: none environment: - sdk: ^3.6.0-0 + sdk: ^3.6.0 dependencies: flutter: diff --git a/examples/animation/animate0/pubspec.yaml b/examples/animation/animate0/pubspec.yaml index de9541ded93..35fb57d425e 100644 --- a/examples/animation/animate0/pubspec.yaml +++ b/examples/animation/animate0/pubspec.yaml @@ -5,7 +5,7 @@ description: >- version: 1.0.0 environment: - sdk: ^3.6.0-0 + sdk: ^3.6.0 dependencies: flutter: diff --git a/examples/animation/animate1/pubspec.yaml b/examples/animation/animate1/pubspec.yaml index de9541ded93..35fb57d425e 100644 --- a/examples/animation/animate1/pubspec.yaml +++ b/examples/animation/animate1/pubspec.yaml @@ -5,7 +5,7 @@ description: >- version: 1.0.0 environment: - sdk: ^3.6.0-0 + sdk: ^3.6.0 dependencies: flutter: diff --git a/examples/animation/animate2/pubspec.yaml b/examples/animation/animate2/pubspec.yaml index de9541ded93..35fb57d425e 100644 --- a/examples/animation/animate2/pubspec.yaml +++ b/examples/animation/animate2/pubspec.yaml @@ -5,7 +5,7 @@ description: >- version: 1.0.0 environment: - sdk: ^3.6.0-0 + sdk: ^3.6.0 dependencies: flutter: diff --git a/examples/animation/animate3/pubspec.yaml b/examples/animation/animate3/pubspec.yaml index de9541ded93..35fb57d425e 100644 --- a/examples/animation/animate3/pubspec.yaml +++ b/examples/animation/animate3/pubspec.yaml @@ -5,7 +5,7 @@ description: >- version: 1.0.0 environment: - sdk: ^3.6.0-0 + sdk: ^3.6.0 dependencies: flutter: diff --git a/examples/animation/animate4/pubspec.yaml b/examples/animation/animate4/pubspec.yaml index de9541ded93..35fb57d425e 100644 --- a/examples/animation/animate4/pubspec.yaml +++ b/examples/animation/animate4/pubspec.yaml @@ -5,7 +5,7 @@ description: >- version: 1.0.0 environment: - sdk: ^3.6.0-0 + sdk: ^3.6.0 dependencies: flutter: diff --git a/examples/animation/animate5/pubspec.yaml b/examples/animation/animate5/pubspec.yaml index de9541ded93..35fb57d425e 100644 --- a/examples/animation/animate5/pubspec.yaml +++ b/examples/animation/animate5/pubspec.yaml @@ -5,7 +5,7 @@ description: >- version: 1.0.0 environment: - sdk: ^3.6.0-0 + sdk: ^3.6.0 dependencies: flutter: diff --git a/examples/animation/implicit/pubspec.yaml b/examples/animation/implicit/pubspec.yaml index 88f9b786b0c..9b428991242 100644 --- a/examples/animation/implicit/pubspec.yaml +++ b/examples/animation/implicit/pubspec.yaml @@ -5,7 +5,7 @@ publish_to: none version: 1.0.0+1 environment: - sdk: ^3.6.0-0 + sdk: ^3.6.0 dependencies: flutter: diff --git a/examples/cookbook/animation/animated_container/pubspec.yaml b/examples/cookbook/animation/animated_container/pubspec.yaml index fb83e267b7e..8b249a029b3 100644 --- a/examples/cookbook/animation/animated_container/pubspec.yaml +++ b/examples/cookbook/animation/animated_container/pubspec.yaml @@ -2,7 +2,7 @@ name: animated_container description: Sample code for cookbook. environment: - sdk: ^3.6.0-0 + sdk: ^3.6.0 dependencies: flutter: diff --git a/examples/cookbook/animation/opacity_animation/pubspec.yaml b/examples/cookbook/animation/opacity_animation/pubspec.yaml index 12a4f993990..a8e995a2a5e 100644 --- a/examples/cookbook/animation/opacity_animation/pubspec.yaml +++ b/examples/cookbook/animation/opacity_animation/pubspec.yaml @@ -2,7 +2,7 @@ name: opacity_animation description: Sample code for cookbook. environment: - sdk: ^3.6.0-0 + sdk: ^3.6.0 dependencies: flutter: diff --git a/examples/cookbook/animation/page_route_animation/pubspec.yaml b/examples/cookbook/animation/page_route_animation/pubspec.yaml index 5e33577da66..b18e02876ec 100644 --- a/examples/cookbook/animation/page_route_animation/pubspec.yaml +++ b/examples/cookbook/animation/page_route_animation/pubspec.yaml @@ -2,7 +2,7 @@ name: page_route_animation description: Sample code for cookbook. environment: - sdk: ^3.6.0-0 + sdk: ^3.6.0 dependencies: flutter: diff --git a/examples/cookbook/animation/physics_simulation/pubspec.yaml b/examples/cookbook/animation/physics_simulation/pubspec.yaml index ee88297e025..0a07dc97d46 100644 --- a/examples/cookbook/animation/physics_simulation/pubspec.yaml +++ b/examples/cookbook/animation/physics_simulation/pubspec.yaml @@ -2,7 +2,7 @@ name: physics_simulation description: Sample code for cookbook. environment: - sdk: ^3.6.0-0 + sdk: ^3.6.0 dependencies: flutter: diff --git a/examples/cookbook/design/drawer/pubspec.yaml b/examples/cookbook/design/drawer/pubspec.yaml index 48725590bb8..0ef57685bf6 100644 --- a/examples/cookbook/design/drawer/pubspec.yaml +++ b/examples/cookbook/design/drawer/pubspec.yaml @@ -2,7 +2,7 @@ name: drawer description: Sample code for drawer cookbook recipe. environment: - sdk: ^3.6.0-0 + sdk: ^3.6.0 dependencies: flutter: diff --git a/examples/cookbook/design/fonts/pubspec.yaml b/examples/cookbook/design/fonts/pubspec.yaml index add56299c7a..69efc92ad3b 100644 --- a/examples/cookbook/design/fonts/pubspec.yaml +++ b/examples/cookbook/design/fonts/pubspec.yaml @@ -4,7 +4,7 @@ publish_to: none version: 1.0.0+1 environment: - sdk: ^3.6.0-0 + sdk: ^3.6.0 dependencies: flutter: diff --git a/examples/cookbook/design/orientation/pubspec.yaml b/examples/cookbook/design/orientation/pubspec.yaml index d1763ceb02d..8622631f1b3 100644 --- a/examples/cookbook/design/orientation/pubspec.yaml +++ b/examples/cookbook/design/orientation/pubspec.yaml @@ -2,7 +2,7 @@ name: orientation description: Sample code for orientation cookbook recipe. environment: - sdk: ^3.6.0-0 + sdk: ^3.6.0 dependencies: flutter: diff --git a/examples/cookbook/design/package_fonts/pubspec.yaml b/examples/cookbook/design/package_fonts/pubspec.yaml index 41d0a442d09..2220917bfab 100644 --- a/examples/cookbook/design/package_fonts/pubspec.yaml +++ b/examples/cookbook/design/package_fonts/pubspec.yaml @@ -4,7 +4,7 @@ publish_to: none version: 1.0.0+1 environment: - sdk: ^3.6.0-0 + sdk: ^3.6.0 dependencies: flutter: diff --git a/examples/cookbook/design/snackbars/pubspec.yaml b/examples/cookbook/design/snackbars/pubspec.yaml index f3a217d7117..077ff1cd12b 100644 --- a/examples/cookbook/design/snackbars/pubspec.yaml +++ b/examples/cookbook/design/snackbars/pubspec.yaml @@ -2,7 +2,7 @@ name: snackbars description: Sample code for snackbars cookbook recipe. environment: - sdk: ^3.6.0-0 + sdk: ^3.6.0 dependencies: flutter: diff --git a/examples/cookbook/design/tabs/pubspec.yaml b/examples/cookbook/design/tabs/pubspec.yaml index 11dbf7de9c3..f6168e55d2f 100644 --- a/examples/cookbook/design/tabs/pubspec.yaml +++ b/examples/cookbook/design/tabs/pubspec.yaml @@ -2,7 +2,7 @@ name: tabs description: Sample code for tabs cookbook recipe. environment: - sdk: ^3.6.0-0 + sdk: ^3.6.0 dependencies: flutter: diff --git a/examples/cookbook/design/themes/pubspec.yaml b/examples/cookbook/design/themes/pubspec.yaml index 02aab6308ea..107eab04dfe 100644 --- a/examples/cookbook/design/themes/pubspec.yaml +++ b/examples/cookbook/design/themes/pubspec.yaml @@ -2,7 +2,7 @@ name: themes description: Sample code for themes cookbook recipe. environment: - sdk: ^3.6.0-0 + sdk: ^3.6.0 dependencies: flutter: diff --git a/examples/cookbook/effects/download_button/pubspec.yaml b/examples/cookbook/effects/download_button/pubspec.yaml index 988b389047e..4db49573d9f 100644 --- a/examples/cookbook/effects/download_button/pubspec.yaml +++ b/examples/cookbook/effects/download_button/pubspec.yaml @@ -4,7 +4,7 @@ publish_to: none version: 1.0.0+1 environment: - sdk: ^3.6.0-0 + sdk: ^3.6.0 dependencies: flutter: diff --git a/examples/cookbook/effects/drag_a_widget/pubspec.yaml b/examples/cookbook/effects/drag_a_widget/pubspec.yaml index a157e447c89..34a5147025f 100644 --- a/examples/cookbook/effects/drag_a_widget/pubspec.yaml +++ b/examples/cookbook/effects/drag_a_widget/pubspec.yaml @@ -6,7 +6,7 @@ publish_to: none version: 1.0.0+1 environment: - sdk: ^3.6.0-0 + sdk: ^3.6.0 dependencies: flutter: diff --git a/examples/cookbook/effects/expandable_fab/pubspec.yaml b/examples/cookbook/effects/expandable_fab/pubspec.yaml index 74566e269d3..c659f6b9180 100644 --- a/examples/cookbook/effects/expandable_fab/pubspec.yaml +++ b/examples/cookbook/effects/expandable_fab/pubspec.yaml @@ -5,7 +5,7 @@ publish_to: none version: 1.0.0+1 environment: - sdk: ^3.6.0-0 + sdk: ^3.6.0 dependencies: flutter: diff --git a/examples/cookbook/effects/gradient_bubbles/pubspec.yaml b/examples/cookbook/effects/gradient_bubbles/pubspec.yaml index 9b708516d89..127dd349009 100644 --- a/examples/cookbook/effects/gradient_bubbles/pubspec.yaml +++ b/examples/cookbook/effects/gradient_bubbles/pubspec.yaml @@ -4,7 +4,7 @@ publish_to: none version: 1.0.0+1 environment: - sdk: ^3.6.0-0 + sdk: ^3.6.0 dependencies: flutter: diff --git a/examples/cookbook/effects/nested_nav/pubspec.yaml b/examples/cookbook/effects/nested_nav/pubspec.yaml index 6d209ffe274..1d7cd4e8d5b 100644 --- a/examples/cookbook/effects/nested_nav/pubspec.yaml +++ b/examples/cookbook/effects/nested_nav/pubspec.yaml @@ -6,7 +6,7 @@ publish_to: none version: 1.0.0+1 environment: - sdk: ^3.6.0-0 + sdk: ^3.6.0 dependencies: flutter: diff --git a/examples/cookbook/effects/parallax_scrolling/pubspec.yaml b/examples/cookbook/effects/parallax_scrolling/pubspec.yaml index 10865f2a400..44ac007835e 100644 --- a/examples/cookbook/effects/parallax_scrolling/pubspec.yaml +++ b/examples/cookbook/effects/parallax_scrolling/pubspec.yaml @@ -6,7 +6,7 @@ publish_to: none version: 1.0.0+1 environment: - sdk: ^3.6.0-0 + sdk: ^3.6.0 dependencies: flutter: diff --git a/examples/cookbook/effects/shimmer_loading/pubspec.yaml b/examples/cookbook/effects/shimmer_loading/pubspec.yaml index 520dddf46d9..7733834d145 100644 --- a/examples/cookbook/effects/shimmer_loading/pubspec.yaml +++ b/examples/cookbook/effects/shimmer_loading/pubspec.yaml @@ -6,7 +6,7 @@ publish_to: none version: 1.0.0+1 environment: - sdk: ^3.6.0-0 + sdk: ^3.6.0 dependencies: flutter: diff --git a/examples/cookbook/effects/staggered_menu_animation/pubspec.yaml b/examples/cookbook/effects/staggered_menu_animation/pubspec.yaml index 52e47254509..723117688e0 100644 --- a/examples/cookbook/effects/staggered_menu_animation/pubspec.yaml +++ b/examples/cookbook/effects/staggered_menu_animation/pubspec.yaml @@ -6,7 +6,7 @@ publish_to: none version: 1.0.0+1 environment: - sdk: ^3.6.0-0 + sdk: ^3.6.0 dependencies: flutter: diff --git a/examples/cookbook/effects/typing_indicator/pubspec.yaml b/examples/cookbook/effects/typing_indicator/pubspec.yaml index 9d0885425ca..fdd5577f42c 100644 --- a/examples/cookbook/effects/typing_indicator/pubspec.yaml +++ b/examples/cookbook/effects/typing_indicator/pubspec.yaml @@ -5,7 +5,7 @@ publish_to: none version: 1.0.0+1 environment: - sdk: ^3.6.0-0 + sdk: ^3.6.0 dependencies: flutter: diff --git a/examples/cookbook/forms/focus/pubspec.yaml b/examples/cookbook/forms/focus/pubspec.yaml index a1c19ccc113..89357e7d3a2 100644 --- a/examples/cookbook/forms/focus/pubspec.yaml +++ b/examples/cookbook/forms/focus/pubspec.yaml @@ -2,7 +2,7 @@ name: focus description: Sample code for focus cookbook recipe. environment: - sdk: ^3.6.0-0 + sdk: ^3.6.0 dependencies: flutter: diff --git a/examples/cookbook/forms/retrieve_input/pubspec.yaml b/examples/cookbook/forms/retrieve_input/pubspec.yaml index 08f5ca67f9a..78eaaef5a73 100644 --- a/examples/cookbook/forms/retrieve_input/pubspec.yaml +++ b/examples/cookbook/forms/retrieve_input/pubspec.yaml @@ -2,7 +2,7 @@ name: retrieve_input description: Sample code for retrieve_input cookbook recipe. environment: - sdk: ^3.6.0-0 + sdk: ^3.6.0 dependencies: flutter: diff --git a/examples/cookbook/forms/text_field_changes/pubspec.yaml b/examples/cookbook/forms/text_field_changes/pubspec.yaml index 3b387053b0a..309e81c9b14 100644 --- a/examples/cookbook/forms/text_field_changes/pubspec.yaml +++ b/examples/cookbook/forms/text_field_changes/pubspec.yaml @@ -2,7 +2,7 @@ name: text_field_changes description: Sample code for text_field_changes environment: - sdk: ^3.6.0-0 + sdk: ^3.6.0 dependencies: flutter: diff --git a/examples/cookbook/forms/text_input/pubspec.yaml b/examples/cookbook/forms/text_input/pubspec.yaml index f2dc3f2595c..d2f5120a448 100644 --- a/examples/cookbook/forms/text_input/pubspec.yaml +++ b/examples/cookbook/forms/text_input/pubspec.yaml @@ -6,7 +6,7 @@ publish_to: none version: 1.0.0+1 environment: - sdk: ^3.6.0-0 + sdk: ^3.6.0 dependencies: flutter: diff --git a/examples/cookbook/forms/validation/pubspec.yaml b/examples/cookbook/forms/validation/pubspec.yaml index c5892f383be..4ff8d0c5793 100644 --- a/examples/cookbook/forms/validation/pubspec.yaml +++ b/examples/cookbook/forms/validation/pubspec.yaml @@ -2,7 +2,7 @@ name: form description: Use Form widget to perform form validation. environment: - sdk: ^3.6.0-0 + sdk: ^3.6.0 dependencies: flutter: diff --git a/examples/cookbook/games/achievements_leaderboards/pubspec.yaml b/examples/cookbook/games/achievements_leaderboards/pubspec.yaml index ea9c9cb11f6..32ccce52e8d 100644 --- a/examples/cookbook/games/achievements_leaderboards/pubspec.yaml +++ b/examples/cookbook/games/achievements_leaderboards/pubspec.yaml @@ -2,7 +2,7 @@ name: games_services_example description: Games services environment: - sdk: ^3.6.0-0 + sdk: ^3.6.0 dependencies: flutter: diff --git a/examples/cookbook/games/firestore_multiplayer/pubspec.yaml b/examples/cookbook/games/firestore_multiplayer/pubspec.yaml index 4686dfb292f..20695927882 100644 --- a/examples/cookbook/games/firestore_multiplayer/pubspec.yaml +++ b/examples/cookbook/games/firestore_multiplayer/pubspec.yaml @@ -2,7 +2,7 @@ name: firestore_multiplayer description: Firestore multiplayer environment: - sdk: ^3.6.0-0 + sdk: ^3.6.0 dependencies: flutter: diff --git a/examples/cookbook/gestures/dismissible/pubspec.yaml b/examples/cookbook/gestures/dismissible/pubspec.yaml index abf902478a6..501a73e8e69 100644 --- a/examples/cookbook/gestures/dismissible/pubspec.yaml +++ b/examples/cookbook/gestures/dismissible/pubspec.yaml @@ -2,7 +2,7 @@ name: dismissible description: Sample code for dismissible cookbook recipe. environment: - sdk: ^3.6.0-0 + sdk: ^3.6.0 dependencies: flutter: diff --git a/examples/cookbook/gestures/handling_taps/pubspec.yaml b/examples/cookbook/gestures/handling_taps/pubspec.yaml index 944f0f420a3..0eea1d206cb 100644 --- a/examples/cookbook/gestures/handling_taps/pubspec.yaml +++ b/examples/cookbook/gestures/handling_taps/pubspec.yaml @@ -2,7 +2,7 @@ name: handling_taps description: Example on handling_taps cookbook recipe. environment: - sdk: ^3.6.0-0 + sdk: ^3.6.0 dependencies: flutter: diff --git a/examples/cookbook/gestures/ripples/pubspec.yaml b/examples/cookbook/gestures/ripples/pubspec.yaml index a10a7454f99..7fc150f6a69 100644 --- a/examples/cookbook/gestures/ripples/pubspec.yaml +++ b/examples/cookbook/gestures/ripples/pubspec.yaml @@ -2,7 +2,7 @@ name: ripples description: Example for ripples cookbook recipe environment: - sdk: ^3.6.0-0 + sdk: ^3.6.0 dependencies: flutter: diff --git a/examples/cookbook/images/cached_images/pubspec.yaml b/examples/cookbook/images/cached_images/pubspec.yaml index b556fb2ac32..a0ff355e0c6 100644 --- a/examples/cookbook/images/cached_images/pubspec.yaml +++ b/examples/cookbook/images/cached_images/pubspec.yaml @@ -6,7 +6,7 @@ publish_to: none version: 1.0.0+1 environment: - sdk: ^3.6.0-0 + sdk: ^3.6.0 dependencies: flutter: diff --git a/examples/cookbook/images/fading_in_images/pubspec.yaml b/examples/cookbook/images/fading_in_images/pubspec.yaml index 2ffb41f2ede..aa0c7c592f7 100644 --- a/examples/cookbook/images/fading_in_images/pubspec.yaml +++ b/examples/cookbook/images/fading_in_images/pubspec.yaml @@ -6,7 +6,7 @@ publish_to: none version: 1.0.0+1 environment: - sdk: ^3.6.0-0 + sdk: ^3.6.0 dependencies: flutter: diff --git a/examples/cookbook/images/network_image/pubspec.yaml b/examples/cookbook/images/network_image/pubspec.yaml index 7cfc1c1cc3d..2d427b4b556 100644 --- a/examples/cookbook/images/network_image/pubspec.yaml +++ b/examples/cookbook/images/network_image/pubspec.yaml @@ -6,7 +6,7 @@ publish_to: none version: 1.0.0+1 environment: - sdk: ^3.6.0-0 + sdk: ^3.6.0 dependencies: flutter: diff --git a/examples/cookbook/lists/basic_list/pubspec.yaml b/examples/cookbook/lists/basic_list/pubspec.yaml index b97f97b3aaf..1525f012260 100644 --- a/examples/cookbook/lists/basic_list/pubspec.yaml +++ b/examples/cookbook/lists/basic_list/pubspec.yaml @@ -6,7 +6,7 @@ publish_to: none version: 1.0.0+1 environment: - sdk: ^3.6.0-0 + sdk: ^3.6.0 dependencies: flutter: diff --git a/examples/cookbook/lists/floating_app_bar/pubspec.yaml b/examples/cookbook/lists/floating_app_bar/pubspec.yaml index 2ce873b7a0f..bc1a765bf7c 100644 --- a/examples/cookbook/lists/floating_app_bar/pubspec.yaml +++ b/examples/cookbook/lists/floating_app_bar/pubspec.yaml @@ -2,7 +2,7 @@ name: floating_app_bar description: Example for floating_app_bar cookbook recipe environment: - sdk: ^3.6.0-0 + sdk: ^3.6.0 dependencies: flutter: diff --git a/examples/cookbook/lists/grid_lists/pubspec.yaml b/examples/cookbook/lists/grid_lists/pubspec.yaml index 8e072dd5b99..e5b1f584cf3 100644 --- a/examples/cookbook/lists/grid_lists/pubspec.yaml +++ b/examples/cookbook/lists/grid_lists/pubspec.yaml @@ -6,7 +6,7 @@ publish_to: none version: 1.0.0+1 environment: - sdk: ^3.6.0-0 + sdk: ^3.6.0 dependencies: flutter: diff --git a/examples/cookbook/lists/horizontal_list/pubspec.yaml b/examples/cookbook/lists/horizontal_list/pubspec.yaml index 27c96fb7d96..1186b522e62 100644 --- a/examples/cookbook/lists/horizontal_list/pubspec.yaml +++ b/examples/cookbook/lists/horizontal_list/pubspec.yaml @@ -6,7 +6,7 @@ publish_to: none version: 1.0.0+1 environment: - sdk: ^3.6.0-0 + sdk: ^3.6.0 dependencies: flutter: diff --git a/examples/cookbook/lists/long_lists/pubspec.yaml b/examples/cookbook/lists/long_lists/pubspec.yaml index c07bde81d58..3f3405a2567 100644 --- a/examples/cookbook/lists/long_lists/pubspec.yaml +++ b/examples/cookbook/lists/long_lists/pubspec.yaml @@ -2,7 +2,7 @@ name: long_lists description: Example for long_lists cookbook recipe environment: - sdk: ^3.6.0-0 + sdk: ^3.6.0 dependencies: flutter: diff --git a/examples/cookbook/lists/mixed_list/pubspec.yaml b/examples/cookbook/lists/mixed_list/pubspec.yaml index ad7280c6838..8ff0eac88f5 100644 --- a/examples/cookbook/lists/mixed_list/pubspec.yaml +++ b/examples/cookbook/lists/mixed_list/pubspec.yaml @@ -2,7 +2,7 @@ name: mixed_lists description: Example for mixed_lists cookbook recipe environment: - sdk: ^3.6.0-0 + sdk: ^3.6.0 dependencies: flutter: diff --git a/examples/cookbook/lists/spaced_items/pubspec.yaml b/examples/cookbook/lists/spaced_items/pubspec.yaml index 766c9965f7e..815ce04e268 100644 --- a/examples/cookbook/lists/spaced_items/pubspec.yaml +++ b/examples/cookbook/lists/spaced_items/pubspec.yaml @@ -2,7 +2,7 @@ name: spaced_items description: Example for spaced_items cookbook recipe environment: - sdk: ^3.6.0-0 + sdk: ^3.6.0 dependencies: flutter: diff --git a/examples/cookbook/maintenance/error_reporting/pubspec.yaml b/examples/cookbook/maintenance/error_reporting/pubspec.yaml index 0477d71f03b..4e66da6d843 100644 --- a/examples/cookbook/maintenance/error_reporting/pubspec.yaml +++ b/examples/cookbook/maintenance/error_reporting/pubspec.yaml @@ -3,7 +3,7 @@ description: Error reporting example using sentry. publish_to: none environment: - sdk: ^3.6.0-0 + sdk: ^3.6.0 dependencies: flutter: diff --git a/examples/cookbook/navigation/hero_animations/pubspec.yaml b/examples/cookbook/navigation/hero_animations/pubspec.yaml index 4945ad79d90..f8f5332378d 100644 --- a/examples/cookbook/navigation/hero_animations/pubspec.yaml +++ b/examples/cookbook/navigation/hero_animations/pubspec.yaml @@ -2,7 +2,7 @@ name: hero_animations description: Hero animations environment: - sdk: ^3.6.0-0 + sdk: ^3.6.0 dependencies: flutter: diff --git a/examples/cookbook/navigation/named_routes/pubspec.yaml b/examples/cookbook/navigation/named_routes/pubspec.yaml index cb6fa374164..902eb370512 100644 --- a/examples/cookbook/navigation/named_routes/pubspec.yaml +++ b/examples/cookbook/navigation/named_routes/pubspec.yaml @@ -2,7 +2,7 @@ name: navigate_with_arguments description: Use Form widget to perform form validation. environment: - sdk: ^3.6.0-0 + sdk: ^3.6.0 dependencies: flutter: diff --git a/examples/cookbook/navigation/navigate_with_arguments/pubspec.yaml b/examples/cookbook/navigation/navigate_with_arguments/pubspec.yaml index cb6fa374164..902eb370512 100644 --- a/examples/cookbook/navigation/navigate_with_arguments/pubspec.yaml +++ b/examples/cookbook/navigation/navigate_with_arguments/pubspec.yaml @@ -2,7 +2,7 @@ name: navigate_with_arguments description: Use Form widget to perform form validation. environment: - sdk: ^3.6.0-0 + sdk: ^3.6.0 dependencies: flutter: diff --git a/examples/cookbook/navigation/navigation_basics/pubspec.yaml b/examples/cookbook/navigation/navigation_basics/pubspec.yaml index 98ba089064f..18366138f24 100644 --- a/examples/cookbook/navigation/navigation_basics/pubspec.yaml +++ b/examples/cookbook/navigation/navigation_basics/pubspec.yaml @@ -6,7 +6,7 @@ publish_to: none # Remove this line if you wish to publish to pub.dev version: 1.0.0+1 environment: - sdk: ^3.6.0-0 + sdk: ^3.6.0 dependencies: flutter: diff --git a/examples/cookbook/navigation/passing_data/pubspec.yaml b/examples/cookbook/navigation/passing_data/pubspec.yaml index 6e02c5d5147..728d76cc9f4 100644 --- a/examples/cookbook/navigation/passing_data/pubspec.yaml +++ b/examples/cookbook/navigation/passing_data/pubspec.yaml @@ -2,7 +2,7 @@ name: passing_data description: Passing data environment: - sdk: ^3.6.0-0 + sdk: ^3.6.0 dependencies: flutter: diff --git a/examples/cookbook/navigation/returning_data/pubspec.yaml b/examples/cookbook/navigation/returning_data/pubspec.yaml index b2e920bde9a..5ec1b9cf556 100644 --- a/examples/cookbook/navigation/returning_data/pubspec.yaml +++ b/examples/cookbook/navigation/returning_data/pubspec.yaml @@ -2,7 +2,7 @@ name: returning_data description: Returning data environment: - sdk: ^3.6.0-0 + sdk: ^3.6.0 dependencies: flutter: diff --git a/examples/cookbook/networking/authenticated_requests/pubspec.yaml b/examples/cookbook/networking/authenticated_requests/pubspec.yaml index 529f3db06ae..d66bb7f541e 100644 --- a/examples/cookbook/networking/authenticated_requests/pubspec.yaml +++ b/examples/cookbook/networking/authenticated_requests/pubspec.yaml @@ -2,7 +2,7 @@ name: hero_animations description: Hero animations environment: - sdk: ^3.6.0-0 + sdk: ^3.6.0 dependencies: flutter: diff --git a/examples/cookbook/networking/background_parsing/pubspec.yaml b/examples/cookbook/networking/background_parsing/pubspec.yaml index f113a83a9e2..712a5b1ca09 100644 --- a/examples/cookbook/networking/background_parsing/pubspec.yaml +++ b/examples/cookbook/networking/background_parsing/pubspec.yaml @@ -2,7 +2,7 @@ name: background_parsing description: Background parsing environment: - sdk: ^3.6.0-0 + sdk: ^3.6.0 dependencies: flutter: diff --git a/examples/cookbook/networking/delete_data/pubspec.yaml b/examples/cookbook/networking/delete_data/pubspec.yaml index fecf29c4dc2..5d458e2d84d 100644 --- a/examples/cookbook/networking/delete_data/pubspec.yaml +++ b/examples/cookbook/networking/delete_data/pubspec.yaml @@ -2,7 +2,7 @@ name: delete_data description: Delete Data environment: - sdk: ^3.6.0-0 + sdk: ^3.6.0 dependencies: flutter: diff --git a/examples/cookbook/networking/fetch_data/pubspec.yaml b/examples/cookbook/networking/fetch_data/pubspec.yaml index 97ebddc9b9c..38ae0112165 100644 --- a/examples/cookbook/networking/fetch_data/pubspec.yaml +++ b/examples/cookbook/networking/fetch_data/pubspec.yaml @@ -2,7 +2,7 @@ name: fetch_data description: Fetch Data environment: - sdk: ^3.6.0-0 + sdk: ^3.6.0 dependencies: flutter: diff --git a/examples/cookbook/networking/send_data/pubspec.yaml b/examples/cookbook/networking/send_data/pubspec.yaml index d8f93703e86..f68ac557daa 100644 --- a/examples/cookbook/networking/send_data/pubspec.yaml +++ b/examples/cookbook/networking/send_data/pubspec.yaml @@ -2,7 +2,7 @@ name: send_data description: Send data environment: - sdk: ^3.6.0-0 + sdk: ^3.6.0 dependencies: flutter: diff --git a/examples/cookbook/networking/update_data/pubspec.yaml b/examples/cookbook/networking/update_data/pubspec.yaml index 8878d06dc2e..a786018026e 100644 --- a/examples/cookbook/networking/update_data/pubspec.yaml +++ b/examples/cookbook/networking/update_data/pubspec.yaml @@ -2,7 +2,7 @@ name: update_data description: Update Data environment: - sdk: ^3.6.0-0 + sdk: ^3.6.0 dependencies: flutter: diff --git a/examples/cookbook/networking/web_sockets/pubspec.yaml b/examples/cookbook/networking/web_sockets/pubspec.yaml index 25d3a1f5a5e..53843ac9492 100644 --- a/examples/cookbook/networking/web_sockets/pubspec.yaml +++ b/examples/cookbook/networking/web_sockets/pubspec.yaml @@ -2,7 +2,7 @@ name: web_sockets description: Web Sockets environment: - sdk: ^3.6.0-0 + sdk: ^3.6.0 dependencies: flutter: diff --git a/examples/cookbook/persistence/key_value/pubspec.yaml b/examples/cookbook/persistence/key_value/pubspec.yaml index 9b702800859..f3d2717231a 100644 --- a/examples/cookbook/persistence/key_value/pubspec.yaml +++ b/examples/cookbook/persistence/key_value/pubspec.yaml @@ -5,7 +5,7 @@ description: >- shows how to use the shared_preferences package. environment: - sdk: ^3.6.0-0 + sdk: ^3.6.0 dependencies: flutter: diff --git a/examples/cookbook/persistence/reading_writing_files/pubspec.yaml b/examples/cookbook/persistence/reading_writing_files/pubspec.yaml index e6a2f54fef6..78cfc27d13b 100644 --- a/examples/cookbook/persistence/reading_writing_files/pubspec.yaml +++ b/examples/cookbook/persistence/reading_writing_files/pubspec.yaml @@ -2,7 +2,7 @@ name: reading_writing_files description: Reading and Writing Files environment: - sdk: ^3.6.0-0 + sdk: ^3.6.0 dependencies: flutter: diff --git a/examples/cookbook/persistence/sqlite/pubspec.yaml b/examples/cookbook/persistence/sqlite/pubspec.yaml index d4ca6a570a5..df019115c6e 100644 --- a/examples/cookbook/persistence/sqlite/pubspec.yaml +++ b/examples/cookbook/persistence/sqlite/pubspec.yaml @@ -2,7 +2,7 @@ name: sqlite description: Example of using sqflite plugin to access SQLite database. environment: - sdk: ^3.6.0-0 + sdk: ^3.6.0 dependencies: flutter: diff --git a/examples/cookbook/plugins/google_mobile_ads/pubspec.yaml b/examples/cookbook/plugins/google_mobile_ads/pubspec.yaml index 87df1a5dc3c..6a573e36fbf 100644 --- a/examples/cookbook/plugins/google_mobile_ads/pubspec.yaml +++ b/examples/cookbook/plugins/google_mobile_ads/pubspec.yaml @@ -2,7 +2,7 @@ name: google_mobile_ads_example description: Google mobile ads environment: - sdk: ^3.6.0-0 + sdk: ^3.6.0 dependencies: flutter: diff --git a/examples/cookbook/plugins/picture_using_camera/pubspec.yaml b/examples/cookbook/plugins/picture_using_camera/pubspec.yaml index ba7c58964bd..8ef419c05b0 100644 --- a/examples/cookbook/plugins/picture_using_camera/pubspec.yaml +++ b/examples/cookbook/plugins/picture_using_camera/pubspec.yaml @@ -2,7 +2,7 @@ name: picture_using_camera description: A new Flutter project. environment: - sdk: ^3.6.0-0 + sdk: ^3.6.0 dependencies: flutter: diff --git a/examples/cookbook/plugins/play_video/pubspec.yaml b/examples/cookbook/plugins/play_video/pubspec.yaml index 3a8a77ebf20..701054aaa16 100644 --- a/examples/cookbook/plugins/play_video/pubspec.yaml +++ b/examples/cookbook/plugins/play_video/pubspec.yaml @@ -4,7 +4,7 @@ publish_to: none # Remove this line if you wish to publish to pub.dev version: 1.0.0+1 environment: - sdk: ^3.6.0-0 + sdk: ^3.6.0 dependencies: flutter: diff --git a/examples/cookbook/testing/integration/introduction/pubspec.yaml b/examples/cookbook/testing/integration/introduction/pubspec.yaml index 80291817925..8fdbb5d815f 100644 --- a/examples/cookbook/testing/integration/introduction/pubspec.yaml +++ b/examples/cookbook/testing/integration/introduction/pubspec.yaml @@ -4,7 +4,7 @@ publish_to: none # Remove this line if you wish to publish to pub.dev version: 1.0.0+1 environment: - sdk: ^3.6.0-0 + sdk: ^3.6.0 dependencies: flutter: diff --git a/examples/cookbook/testing/integration/profiling/pubspec.yaml b/examples/cookbook/testing/integration/profiling/pubspec.yaml index 63f85b2090b..c042679bc5d 100644 --- a/examples/cookbook/testing/integration/profiling/pubspec.yaml +++ b/examples/cookbook/testing/integration/profiling/pubspec.yaml @@ -2,7 +2,7 @@ name: scrolling description: A new Flutter project. environment: - sdk: ^3.6.0-0 + sdk: ^3.6.0 dependencies: flutter: diff --git a/examples/cookbook/testing/unit/counter_app/pubspec.yaml b/examples/cookbook/testing/unit/counter_app/pubspec.yaml index f82767966c8..5e8f7705796 100644 --- a/examples/cookbook/testing/unit/counter_app/pubspec.yaml +++ b/examples/cookbook/testing/unit/counter_app/pubspec.yaml @@ -5,7 +5,7 @@ publish_to: none version: 1.0.0+1 environment: - sdk: ^3.6.0-0 + sdk: ^3.6.0 dependencies: flutter: diff --git a/examples/cookbook/testing/unit/mocking/pubspec.yaml b/examples/cookbook/testing/unit/mocking/pubspec.yaml index b7b77506f7a..12f9343a65a 100644 --- a/examples/cookbook/testing/unit/mocking/pubspec.yaml +++ b/examples/cookbook/testing/unit/mocking/pubspec.yaml @@ -2,7 +2,7 @@ name: mocking description: Use the Mockito package to mimic the behavior of services for testing. environment: - sdk: ^3.6.0-0 + sdk: ^3.6.0 dependencies: flutter: diff --git a/examples/cookbook/testing/widget/finders/pubspec.yaml b/examples/cookbook/testing/widget/finders/pubspec.yaml index b0918406d19..63a6a54b555 100644 --- a/examples/cookbook/testing/widget/finders/pubspec.yaml +++ b/examples/cookbook/testing/widget/finders/pubspec.yaml @@ -2,7 +2,7 @@ name: finders description: A new Flutter project. environment: - sdk: ^3.6.0-0 + sdk: ^3.6.0 dependencies: flutter: diff --git a/examples/cookbook/testing/widget/introduction/pubspec.yaml b/examples/cookbook/testing/widget/introduction/pubspec.yaml index 63435a4ce56..ace70a866c8 100644 --- a/examples/cookbook/testing/widget/introduction/pubspec.yaml +++ b/examples/cookbook/testing/widget/introduction/pubspec.yaml @@ -2,7 +2,7 @@ name: introduction description: A new Flutter project. environment: - sdk: ^3.6.0-0 + sdk: ^3.6.0 dependencies: flutter: diff --git a/examples/cookbook/testing/widget/scrolling/pubspec.yaml b/examples/cookbook/testing/widget/scrolling/pubspec.yaml index 297f8640537..42861e8fcfb 100644 --- a/examples/cookbook/testing/widget/scrolling/pubspec.yaml +++ b/examples/cookbook/testing/widget/scrolling/pubspec.yaml @@ -2,7 +2,7 @@ name: scrolling description: A new Flutter project. environment: - sdk: ^3.6.0-0 + sdk: ^3.6.0 dependencies: flutter: diff --git a/examples/cookbook/testing/widget/tap_drag/pubspec.yaml b/examples/cookbook/testing/widget/tap_drag/pubspec.yaml index b0918406d19..63a6a54b555 100644 --- a/examples/cookbook/testing/widget/tap_drag/pubspec.yaml +++ b/examples/cookbook/testing/widget/tap_drag/pubspec.yaml @@ -2,7 +2,7 @@ name: finders description: A new Flutter project. environment: - sdk: ^3.6.0-0 + sdk: ^3.6.0 dependencies: flutter: diff --git a/examples/data-and-backend/json/pubspec.yaml b/examples/data-and-backend/json/pubspec.yaml index df588ec49af..f73336397d0 100644 --- a/examples/data-and-backend/json/pubspec.yaml +++ b/examples/data-and-backend/json/pubspec.yaml @@ -5,7 +5,7 @@ publish_to: none version: 1.0.0+1 environment: - sdk: ^3.6.0-0 + sdk: ^3.6.0 dependencies: json_annotation: ^4.8.1 diff --git a/examples/deployment/obfuscate/pubspec.yaml b/examples/deployment/obfuscate/pubspec.yaml index e4bb865a5bb..1c75769ac42 100644 --- a/examples/deployment/obfuscate/pubspec.yaml +++ b/examples/deployment/obfuscate/pubspec.yaml @@ -5,7 +5,7 @@ publish_to: none version: 1.0.0+1 environment: - sdk: ^3.6.0-0 + sdk: ^3.6.0 dependencies: flutter: diff --git a/examples/example_utils/pubspec.yaml b/examples/example_utils/pubspec.yaml index 32a0d29890c..2369c497bca 100644 --- a/examples/example_utils/pubspec.yaml +++ b/examples/example_utils/pubspec.yaml @@ -3,7 +3,7 @@ description: Utils for examples and code snippets on docs.flutter.dev. publish_to: none environment: - sdk: ^3.6.0-0 + sdk: ^3.6.0 dependencies: flutter_lints: ^5.0.0 diff --git a/examples/get-started/codelab_web/pubspec.yaml b/examples/get-started/codelab_web/pubspec.yaml index 7f63d293746..7646fb3d788 100644 --- a/examples/get-started/codelab_web/pubspec.yaml +++ b/examples/get-started/codelab_web/pubspec.yaml @@ -5,7 +5,7 @@ publish_to: none version: 1.0.0+1 environment: - sdk: ^3.6.0-0 + sdk: ^3.6.0 dependencies: flutter: diff --git a/examples/get-started/flutter-for/android_devs/pubspec.yaml b/examples/get-started/flutter-for/android_devs/pubspec.yaml index 7ac8af16a6b..5bc67268852 100644 --- a/examples/get-started/flutter-for/android_devs/pubspec.yaml +++ b/examples/get-started/flutter-for/android_devs/pubspec.yaml @@ -6,7 +6,7 @@ publish_to: none # Remove this line if you wish to publish to pub.dev version: 1.0.0+1 environment: - sdk: ^3.6.0-0 + sdk: ^3.6.0 dependencies: flutter: diff --git a/examples/get-started/flutter-for/declarative/pubspec.yaml b/examples/get-started/flutter-for/declarative/pubspec.yaml index 961caa573f2..cbec3c200bf 100644 --- a/examples/get-started/flutter-for/declarative/pubspec.yaml +++ b/examples/get-started/flutter-for/declarative/pubspec.yaml @@ -5,7 +5,7 @@ publish_to: none version: 1.0.0+1 environment: - sdk: ^3.6.0-0 + sdk: ^3.6.0 dependencies: flutter: diff --git a/examples/get-started/flutter-for/ios_devs/pubspec.yaml b/examples/get-started/flutter-for/ios_devs/pubspec.yaml index fd0ac8b0b01..58e72b49d09 100644 --- a/examples/get-started/flutter-for/ios_devs/pubspec.yaml +++ b/examples/get-started/flutter-for/ios_devs/pubspec.yaml @@ -5,7 +5,7 @@ publish_to: none version: 1.0.0+1 environment: - sdk: ^3.6.0-0 + sdk: ^3.6.0 dependencies: flutter: diff --git a/examples/get-started/flutter-for/react_native_devs/my_widgets/pubspec.yaml b/examples/get-started/flutter-for/react_native_devs/my_widgets/pubspec.yaml index 7706923ea58..7946b75216a 100644 --- a/examples/get-started/flutter-for/react_native_devs/my_widgets/pubspec.yaml +++ b/examples/get-started/flutter-for/react_native_devs/my_widgets/pubspec.yaml @@ -3,7 +3,7 @@ description: A library for `react_native_devs` to import. version: 1.0.0 environment: - sdk: ^3.6.0-0 + sdk: ^3.6.0 dev_dependencies: example_utils: diff --git a/examples/get-started/flutter-for/react_native_devs/pubspec.yaml b/examples/get-started/flutter-for/react_native_devs/pubspec.yaml index db1503cc7d6..5fe234ba980 100644 --- a/examples/get-started/flutter-for/react_native_devs/pubspec.yaml +++ b/examples/get-started/flutter-for/react_native_devs/pubspec.yaml @@ -5,7 +5,7 @@ publish_to: none version: 1.0.0+1 environment: - sdk: ^3.6.0-0 + sdk: ^3.6.0 dependencies: flutter: diff --git a/examples/get-started/flutter-for/web_devs/pubspec.yaml b/examples/get-started/flutter-for/web_devs/pubspec.yaml index 0b8c48b8d28..028ca38ed25 100644 --- a/examples/get-started/flutter-for/web_devs/pubspec.yaml +++ b/examples/get-started/flutter-for/web_devs/pubspec.yaml @@ -5,7 +5,7 @@ publish_to: none version: 1.0.0+1 environment: - sdk: ^3.6.0-0 + sdk: ^3.6.0 dependencies: flutter: diff --git a/examples/get-started/flutter-for/xamarin_devs/pubspec.yaml b/examples/get-started/flutter-for/xamarin_devs/pubspec.yaml index 536e946b36c..be6f7d12be1 100644 --- a/examples/get-started/flutter-for/xamarin_devs/pubspec.yaml +++ b/examples/get-started/flutter-for/xamarin_devs/pubspec.yaml @@ -5,7 +5,7 @@ publish_to: none version: 1.0.0+1 environment: - sdk: ^3.6.0-0 + sdk: ^3.6.0 dependencies: flutter: diff --git a/examples/googleapis/pubspec.yaml b/examples/googleapis/pubspec.yaml index ee2ea3b1788..8a7db4f5beb 100644 --- a/examples/googleapis/pubspec.yaml +++ b/examples/googleapis/pubspec.yaml @@ -2,7 +2,7 @@ name: google_sign_in_example publish_to: none environment: - sdk: ^3.6.0-0 + sdk: ^3.6.0 dependencies: collection: any # Pull the version of collection from Flutter. diff --git a/examples/integration_test/pubspec.yaml b/examples/integration_test/pubspec.yaml index 7260b4e9353..11b5e96a818 100644 --- a/examples/integration_test/pubspec.yaml +++ b/examples/integration_test/pubspec.yaml @@ -3,7 +3,7 @@ publish_to: none version: 0.0.1 environment: - sdk: ^3.6.0-0 + sdk: ^3.6.0 dependencies: flutter: diff --git a/examples/integration_test_migration/pubspec.yaml b/examples/integration_test_migration/pubspec.yaml index 709ee7499c2..eb94adbe085 100644 --- a/examples/integration_test_migration/pubspec.yaml +++ b/examples/integration_test_migration/pubspec.yaml @@ -5,7 +5,7 @@ publish_to: none version: 1.0.0+1 environment: - sdk: ^3.6.0-0 + sdk: ^3.6.0 dependencies: flutter: diff --git a/examples/internationalization/add_language/pubspec.yaml b/examples/internationalization/add_language/pubspec.yaml index 2d9eaa1dfe3..c14bb9f42ea 100644 --- a/examples/internationalization/add_language/pubspec.yaml +++ b/examples/internationalization/add_language/pubspec.yaml @@ -2,7 +2,7 @@ name: add_language description: An i18n app example that adds a supported language environment: - sdk: ^3.6.0-0 + sdk: ^3.6.0 dependencies: flutter: diff --git a/examples/internationalization/gen_l10n_example/pubspec.yaml b/examples/internationalization/gen_l10n_example/pubspec.yaml index 00f3d0c68d5..637d5de74aa 100644 --- a/examples/internationalization/gen_l10n_example/pubspec.yaml +++ b/examples/internationalization/gen_l10n_example/pubspec.yaml @@ -4,7 +4,7 @@ description: >- Example of an internationalized Flutter app that uses `flutter gen-l10n`. environment: - sdk: ^3.6.0-0 + sdk: ^3.6.0 # #docregion flutter-localizations dependencies: diff --git a/examples/internationalization/intl_example/pubspec.yaml b/examples/internationalization/intl_example/pubspec.yaml index 87e930c7a56..3d98729cc66 100644 --- a/examples/internationalization/intl_example/pubspec.yaml +++ b/examples/internationalization/intl_example/pubspec.yaml @@ -2,7 +2,7 @@ name: intl_example description: Example of a Flutter app using the intl library services. environment: - sdk: ^3.6.0-0 + sdk: ^3.6.0 dependencies: flutter: diff --git a/examples/internationalization/minimal/pubspec.yaml b/examples/internationalization/minimal/pubspec.yaml index 7c3b2d9de16..8c03586e486 100644 --- a/examples/internationalization/minimal/pubspec.yaml +++ b/examples/internationalization/minimal/pubspec.yaml @@ -2,7 +2,7 @@ name: l10n_example description: A minimal example of a localized Flutter app environment: - sdk: ^3.6.0-0 + sdk: ^3.6.0 dependencies: flutter: diff --git a/examples/layout/base/pubspec.yaml b/examples/layout/base/pubspec.yaml index 9c1b222b199..4d3d0f452bb 100644 --- a/examples/layout/base/pubspec.yaml +++ b/examples/layout/base/pubspec.yaml @@ -4,7 +4,7 @@ description: > version: 1.0.0 environment: - sdk: ^3.6.0-0 + sdk: ^3.6.0 dependencies: flutter: diff --git a/examples/layout/card_and_stack/pubspec.yaml b/examples/layout/card_and_stack/pubspec.yaml index 32ab08f6f40..8235c6e6bb2 100644 --- a/examples/layout/card_and_stack/pubspec.yaml +++ b/examples/layout/card_and_stack/pubspec.yaml @@ -4,7 +4,7 @@ description: >- version: 1.0.0 environment: - sdk: ^3.6.0-0 + sdk: ^3.6.0 dependencies: flutter: diff --git a/examples/layout/constraints/pubspec.yaml b/examples/layout/constraints/pubspec.yaml index ef471d1ce5b..d8bda512398 100644 --- a/examples/layout/constraints/pubspec.yaml +++ b/examples/layout/constraints/pubspec.yaml @@ -3,7 +3,7 @@ description: example for ui/layout/constraints version: 1.0.0 environment: - sdk: ^3.6.0-0 + sdk: ^3.6.0 dependencies: flutter: diff --git a/examples/layout/container/pubspec.yaml b/examples/layout/container/pubspec.yaml index c9cdd343cdc..726a22bb475 100644 --- a/examples/layout/container/pubspec.yaml +++ b/examples/layout/container/pubspec.yaml @@ -4,7 +4,7 @@ description: >- version: 1.0.0 environment: - sdk: ^3.6.0-0 + sdk: ^3.6.0 dependencies: flutter: diff --git a/examples/layout/grid_and_list/pubspec.yaml b/examples/layout/grid_and_list/pubspec.yaml index 32ab08f6f40..8235c6e6bb2 100644 --- a/examples/layout/grid_and_list/pubspec.yaml +++ b/examples/layout/grid_and_list/pubspec.yaml @@ -4,7 +4,7 @@ description: >- version: 1.0.0 environment: - sdk: ^3.6.0-0 + sdk: ^3.6.0 dependencies: flutter: diff --git a/examples/layout/lakes/interactive/pubspec.yaml b/examples/layout/lakes/interactive/pubspec.yaml index ce9d0e489d4..cc33f9535b8 100644 --- a/examples/layout/lakes/interactive/pubspec.yaml +++ b/examples/layout/lakes/interactive/pubspec.yaml @@ -5,7 +5,7 @@ description: >- version: 1.0.0 environment: - sdk: ^3.6.0-0 + sdk: ^3.6.0 dependencies: flutter: diff --git a/examples/layout/lakes/step2/pubspec.yaml b/examples/layout/lakes/step2/pubspec.yaml index 00d323d756e..b7862500870 100644 --- a/examples/layout/lakes/step2/pubspec.yaml +++ b/examples/layout/lakes/step2/pubspec.yaml @@ -4,7 +4,7 @@ description: >- version: 1.0.0 environment: - sdk: ^3.6.0-0 + sdk: ^3.6.0 dependencies: flutter: diff --git a/examples/layout/lakes/step3/pubspec.yaml b/examples/layout/lakes/step3/pubspec.yaml index 00d323d756e..b7862500870 100644 --- a/examples/layout/lakes/step3/pubspec.yaml +++ b/examples/layout/lakes/step3/pubspec.yaml @@ -4,7 +4,7 @@ description: >- version: 1.0.0 environment: - sdk: ^3.6.0-0 + sdk: ^3.6.0 dependencies: flutter: diff --git a/examples/layout/lakes/step4/pubspec.yaml b/examples/layout/lakes/step4/pubspec.yaml index 00d323d756e..b7862500870 100644 --- a/examples/layout/lakes/step4/pubspec.yaml +++ b/examples/layout/lakes/step4/pubspec.yaml @@ -4,7 +4,7 @@ description: >- version: 1.0.0 environment: - sdk: ^3.6.0-0 + sdk: ^3.6.0 dependencies: flutter: diff --git a/examples/layout/lakes/step5/pubspec.yaml b/examples/layout/lakes/step5/pubspec.yaml index f4dab942623..a1696b6b8e9 100644 --- a/examples/layout/lakes/step5/pubspec.yaml +++ b/examples/layout/lakes/step5/pubspec.yaml @@ -4,7 +4,7 @@ description: >- version: 1.0.0 environment: - sdk: ^3.6.0-0 + sdk: ^3.6.0 dependencies: flutter: diff --git a/examples/layout/lakes/step6/pubspec.yaml b/examples/layout/lakes/step6/pubspec.yaml index f4dab942623..a1696b6b8e9 100644 --- a/examples/layout/lakes/step6/pubspec.yaml +++ b/examples/layout/lakes/step6/pubspec.yaml @@ -4,7 +4,7 @@ description: >- version: 1.0.0 environment: - sdk: ^3.6.0-0 + sdk: ^3.6.0 dependencies: flutter: diff --git a/examples/layout/non_material/pubspec.yaml b/examples/layout/non_material/pubspec.yaml index cdb2ce23f14..f40e96728ab 100644 --- a/examples/layout/non_material/pubspec.yaml +++ b/examples/layout/non_material/pubspec.yaml @@ -4,7 +4,7 @@ description: >- version: 1.0.0 environment: - sdk: ^3.6.0-0 + sdk: ^3.6.0 dependencies: flutter: diff --git a/examples/layout/pavlova/pubspec.yaml b/examples/layout/pavlova/pubspec.yaml index 7746a6188d6..d3030b29213 100644 --- a/examples/layout/pavlova/pubspec.yaml +++ b/examples/layout/pavlova/pubspec.yaml @@ -4,7 +4,7 @@ description: >- version: 1.0.0 environment: - sdk: ^3.6.0-0 + sdk: ^3.6.0 dependencies: flutter: diff --git a/examples/layout/row_column/pubspec.yaml b/examples/layout/row_column/pubspec.yaml index 1609ce56a38..b5ec7409be8 100644 --- a/examples/layout/row_column/pubspec.yaml +++ b/examples/layout/row_column/pubspec.yaml @@ -4,7 +4,7 @@ description: >- version: 1.0.0 environment: - sdk: ^3.6.0-0 + sdk: ^3.6.0 dependencies: flutter: diff --git a/examples/layout/sizing/pubspec.yaml b/examples/layout/sizing/pubspec.yaml index 1609ce56a38..b5ec7409be8 100644 --- a/examples/layout/sizing/pubspec.yaml +++ b/examples/layout/sizing/pubspec.yaml @@ -4,7 +4,7 @@ description: >- version: 1.0.0 environment: - sdk: ^3.6.0-0 + sdk: ^3.6.0 dependencies: flutter: diff --git a/examples/perf/concurrency/isolates/pubspec.yaml b/examples/perf/concurrency/isolates/pubspec.yaml index 070b34da84f..bba956fa424 100644 --- a/examples/perf/concurrency/isolates/pubspec.yaml +++ b/examples/perf/concurrency/isolates/pubspec.yaml @@ -5,7 +5,7 @@ publish_to: none version: 1.0.0+1 environment: - sdk: ^3.6.0-0 + sdk: ^3.6.0 dependencies: flutter: diff --git a/examples/perf/deferred_components/pubspec.yaml b/examples/perf/deferred_components/pubspec.yaml index f7dd408a474..b13b4f09b89 100644 --- a/examples/perf/deferred_components/pubspec.yaml +++ b/examples/perf/deferred_components/pubspec.yaml @@ -3,7 +3,7 @@ description: Samples to showcase deferred component imports/loading. publish_to: none environment: - sdk: ^3.6.0-0 + sdk: ^3.6.0 dependencies: flutter: diff --git a/examples/platform_integration/compose_activities/pubspec.yaml b/examples/platform_integration/compose_activities/pubspec.yaml index ee4c6189126..3fdc6475711 100644 --- a/examples/platform_integration/compose_activities/pubspec.yaml +++ b/examples/platform_integration/compose_activities/pubspec.yaml @@ -6,7 +6,7 @@ publish_to: none version: 1.0.0+1 environment: - sdk: ^3.6.0-0 + sdk: ^3.6.0 dependencies: flutter: diff --git a/examples/platform_integration/pigeon/pubspec.yaml b/examples/platform_integration/pigeon/pubspec.yaml index d31be5eb471..304230d714f 100644 --- a/examples/platform_integration/pigeon/pubspec.yaml +++ b/examples/platform_integration/pigeon/pubspec.yaml @@ -6,7 +6,7 @@ publish_to: none version: 1.0.0+1 environment: - sdk: ^3.6.0-0 + sdk: ^3.6.0 dependencies: flutter: diff --git a/examples/platform_integration/platform_channels/pubspec.yaml b/examples/platform_integration/platform_channels/pubspec.yaml index 4d60079d657..c90319caa2b 100644 --- a/examples/platform_integration/platform_channels/pubspec.yaml +++ b/examples/platform_integration/platform_channels/pubspec.yaml @@ -8,7 +8,7 @@ publish_to: none version: 1.0.0+1 environment: - sdk: ^3.6.0-0 + sdk: ^3.6.0 dependencies: flutter: diff --git a/examples/platform_integration/platform_views/pubspec.yaml b/examples/platform_integration/platform_views/pubspec.yaml index 39a01f75e8f..19de5b188b4 100644 --- a/examples/platform_integration/platform_views/pubspec.yaml +++ b/examples/platform_integration/platform_views/pubspec.yaml @@ -6,7 +6,7 @@ publish_to: none version: 1.0.0+1 environment: - sdk: ^3.6.0-0 + sdk: ^3.6.0 dependencies: flutter: diff --git a/examples/platform_integration/plugin_api_migration/pubspec.yaml b/examples/platform_integration/plugin_api_migration/pubspec.yaml index 3de5cabe9e3..3cedf44118c 100644 --- a/examples/platform_integration/plugin_api_migration/pubspec.yaml +++ b/examples/platform_integration/plugin_api_migration/pubspec.yaml @@ -6,7 +6,7 @@ publish_to: none version: 1.0.0+1 environment: - sdk: ^3.6.0-0 + sdk: ^3.6.0 dependencies: flutter: diff --git a/examples/resources/architectural_overview/pubspec.yaml b/examples/resources/architectural_overview/pubspec.yaml index 024de92ad4c..b0fabe870e6 100644 --- a/examples/resources/architectural_overview/pubspec.yaml +++ b/examples/resources/architectural_overview/pubspec.yaml @@ -3,7 +3,7 @@ description: Samples for the Flutter architectural overview. publish_to: none environment: - sdk: ^3.6.0-0 + sdk: ^3.6.0 dependencies: flutter: diff --git a/examples/resources/dart_swift_concurrency/pubspec.yaml b/examples/resources/dart_swift_concurrency/pubspec.yaml index 5db0c94ff65..952c4894d6f 100644 --- a/examples/resources/dart_swift_concurrency/pubspec.yaml +++ b/examples/resources/dart_swift_concurrency/pubspec.yaml @@ -3,7 +3,7 @@ description: Examples for the Flutter concurrency for Swift developers article. publish_to: none environment: - sdk: ^3.6.0-0 + sdk: ^3.6.0 dependencies: flutter: diff --git a/examples/state_mgmt/simple/pubspec.yaml b/examples/state_mgmt/simple/pubspec.yaml index 1c740fa633e..3031be468f9 100644 --- a/examples/state_mgmt/simple/pubspec.yaml +++ b/examples/state_mgmt/simple/pubspec.yaml @@ -3,7 +3,7 @@ description: Sample state management code. publish_to: none environment: - sdk: ^3.6.0-0 + sdk: ^3.6.0 dependencies: flutter: diff --git a/examples/testing/code_debugging/pubspec.yaml b/examples/testing/code_debugging/pubspec.yaml index 85a9a1c7ec2..fcf802cf65f 100644 --- a/examples/testing/code_debugging/pubspec.yaml +++ b/examples/testing/code_debugging/pubspec.yaml @@ -3,7 +3,7 @@ description: Examples to illustrate debugging your Flutter code. publish_to: none environment: - sdk: ^3.6.0-0 + sdk: ^3.6.0 dependencies: flutter: diff --git a/examples/testing/common_errors/pubspec.yaml b/examples/testing/common_errors/pubspec.yaml index 14cbd03f321..ab53ce38222 100644 --- a/examples/testing/common_errors/pubspec.yaml +++ b/examples/testing/common_errors/pubspec.yaml @@ -3,7 +3,7 @@ description: Excerpts for common Flutter errors. publish_to: none environment: - sdk: ^3.6.0-0 + sdk: ^3.6.0 dependencies: flutter: diff --git a/examples/testing/errors/pubspec.yaml b/examples/testing/errors/pubspec.yaml index d2418f94964..e8d0bdb860a 100644 --- a/examples/testing/errors/pubspec.yaml +++ b/examples/testing/errors/pubspec.yaml @@ -3,7 +3,7 @@ description: An error handling example. publish_to: none environment: - sdk: ^3.6.0-0 + sdk: ^3.6.0 dependencies: flutter: diff --git a/examples/testing/integration_tests/how_to/pubspec.yaml b/examples/testing/integration_tests/how_to/pubspec.yaml index 01fdc30f6d4..82bee526e88 100644 --- a/examples/testing/integration_tests/how_to/pubspec.yaml +++ b/examples/testing/integration_tests/how_to/pubspec.yaml @@ -3,7 +3,7 @@ description: An example of setting up an integration test. publish_to: none environment: - sdk: ^3.6.0-0 + sdk: ^3.6.0 dependencies: flutter: diff --git a/examples/testing/native_debugging/pubspec.yaml b/examples/testing/native_debugging/pubspec.yaml index 72ff03ba123..73fbd0890b4 100644 --- a/examples/testing/native_debugging/pubspec.yaml +++ b/examples/testing/native_debugging/pubspec.yaml @@ -1,11 +1,11 @@ name: native_debugging description: Demonstration of native code debugging -sdk: ^3.6.0-0 +sdk: ^3.6.0 version: 1.0.0+1 environment: - sdk: ^3.6.0-0 + sdk: ^3.6.0 dependencies: flutter: diff --git a/examples/tools/pubspec.yaml b/examples/tools/pubspec.yaml index 93fb1d2fea0..eeacac8beef 100644 --- a/examples/tools/pubspec.yaml +++ b/examples/tools/pubspec.yaml @@ -6,7 +6,7 @@ publish_to: none version: 1.0.0+1 environment: - sdk: ^3.6.0-0 + sdk: ^3.6.0 dependencies: flutter: diff --git a/examples/ui/adaptive_app_demos/pubspec.yaml b/examples/ui/adaptive_app_demos/pubspec.yaml index e81ae4c0278..329f1bc73b0 100644 --- a/examples/ui/adaptive_app_demos/pubspec.yaml +++ b/examples/ui/adaptive_app_demos/pubspec.yaml @@ -3,7 +3,7 @@ description: Demo code for adaptive app development techniques. publish_to: none environment: - sdk: ^3.6.0-0 + sdk: ^3.6.0 dependencies: flutter: diff --git a/examples/ui/advanced/actions_and_shortcuts/pubspec.yaml b/examples/ui/advanced/actions_and_shortcuts/pubspec.yaml index d79ddf0b1ea..b58d5dbe70a 100644 --- a/examples/ui/advanced/actions_and_shortcuts/pubspec.yaml +++ b/examples/ui/advanced/actions_and_shortcuts/pubspec.yaml @@ -3,7 +3,7 @@ description: Sample actions and shortcuts code. publish_to: none environment: - sdk: ^3.6.0-0 + sdk: ^3.6.0 dependencies: flutter: diff --git a/examples/ui/advanced/focus/pubspec.yaml b/examples/ui/advanced/focus/pubspec.yaml index a07704b1323..3ec40d5db05 100644 --- a/examples/ui/advanced/focus/pubspec.yaml +++ b/examples/ui/advanced/focus/pubspec.yaml @@ -3,7 +3,7 @@ description: Sample focus system code. publish_to: none environment: - sdk: ^3.6.0-0 + sdk: ^3.6.0 dependencies: flutter: diff --git a/examples/ui/assets_and_images/pubspec.yaml b/examples/ui/assets_and_images/pubspec.yaml index d00839b072f..f920b64f080 100644 --- a/examples/ui/assets_and_images/pubspec.yaml +++ b/examples/ui/assets_and_images/pubspec.yaml @@ -3,7 +3,7 @@ description: An example project showing how to declare and load assets. publish_to: none environment: - sdk: ^3.6.0-0 + sdk: ^3.6.0 dependencies: flutter: diff --git a/examples/ui/interactive/pubspec.yaml b/examples/ui/interactive/pubspec.yaml index 03de4deb1f6..b5a3e38332d 100644 --- a/examples/ui/interactive/pubspec.yaml +++ b/examples/ui/interactive/pubspec.yaml @@ -2,7 +2,7 @@ name: interactive description: Sample code for interactive.md environment: - sdk: ^3.6.0-0 + sdk: ^3.6.0 dependencies: flutter: diff --git a/examples/ui/widgets_intro/pubspec.yaml b/examples/ui/widgets_intro/pubspec.yaml index f9e0a2e24d3..a5ac3726bb9 100644 --- a/examples/ui/widgets_intro/pubspec.yaml +++ b/examples/ui/widgets_intro/pubspec.yaml @@ -3,7 +3,7 @@ description: Sample state management code. publish_to: none environment: - sdk: ^3.6.0-0 + sdk: ^3.6.0 dependencies: flutter: diff --git a/examples/visual_debugging/pubspec.yaml b/examples/visual_debugging/pubspec.yaml index 94de2873f65..55c2eaec2ce 100644 --- a/examples/visual_debugging/pubspec.yaml +++ b/examples/visual_debugging/pubspec.yaml @@ -3,7 +3,7 @@ publish_to: none description: Examples of visual debugging. environment: - sdk: ^3.6.0-0 + sdk: ^3.6.0 dependencies: flutter: diff --git a/pubspec.yaml b/pubspec.yaml index 5c41d70368d..5ab1ae96f92 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -2,7 +2,7 @@ name: docs_flutter_dev publish_to: none environment: - sdk: ^3.6.0-0 + sdk: ^3.6.0 dev_dependencies: flutter_site: diff --git a/tool/flutter_site/pubspec.yaml b/tool/flutter_site/pubspec.yaml index 5e8fe677221..7486fd16fc0 100644 --- a/tool/flutter_site/pubspec.yaml +++ b/tool/flutter_site/pubspec.yaml @@ -3,7 +3,7 @@ description: Dart-based tools for building docs.flutter.dev. publish_to: none environment: - sdk: ^3.6.0-0 + sdk: ^3.6.0 dependencies: args: ^2.4.2