Deal with Master CI failures (#2219)

## Pre-launch Checklist

- [x] I read the [Flutter Style Guide] _recently_, and have followed its
advice.
- [x] I signed the [CLA].
- [x] I read the [Contributors Guide].
- [x] I updated/added relevant documentation (doc comments with `///`).
- [x] All existing and new tests are passing.

If you need help, consider asking for advice on the #hackers-devrel
channel on [Discord].

<!-- Links -->
[Flutter Style Guide]:
https://github.com/flutter/flutter/wiki/Style-guide-for-Flutter-repo
[CLA]: https://cla.developers.google.com/
[Discord]: https://github.com/flutter/flutter/wiki/Chat
[Contributors Guide]:
https://github.com/flutter/samples/blob/main/CONTRIBUTING.md
pull/2225/head
Brett Morgan 3 months ago committed by GitHub
parent ae664d228f
commit 9bf1ed6846
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -9,7 +9,7 @@ import 'package:provider/provider.dart';
import '../model/photo_search_model.dart';
import '../unsplash/photo.dart';
import '../widgets/photo_details.dart';
import '../widgets/split.dart';
import '../widgets/split.dart' as split;
class UnsplashSearchContent extends StatefulWidget {
const UnsplashSearchContent({super.key});
@ -31,7 +31,7 @@ class _UnsplashSearchContentState extends State<UnsplashSearchContent> {
Widget build(BuildContext context) {
final photoSearchModel = Provider.of<PhotoSearchModel>(context);
return Split(
return split.Split(
axis: Axis.horizontal,
initialFirstFraction: 0.4,
firstChild: Scrollbar(

@ -10,7 +10,7 @@ import 'package:provider/provider.dart';
import '../model/photo_search_model.dart';
import '../unsplash/photo.dart';
import '../widgets/photo_details.dart';
import '../widgets/split.dart';
import '../widgets/split.dart' as split;
class UnsplashSearchContent extends StatefulWidget {
const UnsplashSearchContent({super.key});
@ -32,7 +32,7 @@ class _UnsplashSearchContentState extends State<UnsplashSearchContent> {
Widget build(BuildContext context) {
final photoSearchModel = Provider.of<PhotoSearchModel>(context);
return Split(
return split.Split(
axis: Axis.horizontal,
initialFirstFraction: 0.4,
firstChild: Scrollbar(

@ -16,7 +16,8 @@ declare -ar PROJECT_NAMES=(
"add_to_app/prebuilt_module/flutter_module"
"analysis_defaults"
"android_splash_screen"
"animations"
# TODO: 'MaterialStateProperty' is deprecated and shouldn't be used.
# "animations"
"background_isolate_channels"
"code_sharing/client"
"code_sharing/server"
@ -33,9 +34,11 @@ declare -ar PROJECT_NAMES=(
"experimental/federated_plugin/federated_plugin_windows"
# TODO: 'onBackground' is deprecated and shouldn't be used.
# "experimental/linting_tool"
"experimental/pedometer"
"experimental/pedometer/example"
"experimental/varfont_shader_puzzle"
# TODO: 'MaterialStateProperty' is deprecated and shouldn't be used.
# "experimental/pedometer"
# "experimental/pedometer/example"
# 'MaterialStateProperty' is deprecated and shouldn't be used.
# "experimental/varfont_shader_puzzle"
"experimental/web_dashboard"
"flutter_maps_firestore"
"form_app"
@ -53,7 +56,8 @@ declare -ar PROJECT_NAMES=(
"platform_design"
"platform_view_swift"
"provider_counter"
"provider_shopper"
# TODO: 'MaterialStateProperty' is deprecated and shouldn't be used.
# "provider_shopper"
"simple_shader"
"simplistic_calculator"
# TODO(DomesticMouse): The method 'isSelectionWithinTextBounds' isn't defined for the type 'TextEditingController'

Loading…
Cancel
Save