mirror of
https://github.com/flutter/samples.git
synced 2025-11-08 13:58:47 +00:00
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
This commit is contained in:
@@ -9,7 +9,7 @@ import 'package:provider/provider.dart';
|
|||||||
import '../model/photo_search_model.dart';
|
import '../model/photo_search_model.dart';
|
||||||
import '../unsplash/photo.dart';
|
import '../unsplash/photo.dart';
|
||||||
import '../widgets/photo_details.dart';
|
import '../widgets/photo_details.dart';
|
||||||
import '../widgets/split.dart';
|
import '../widgets/split.dart' as split;
|
||||||
|
|
||||||
class UnsplashSearchContent extends StatefulWidget {
|
class UnsplashSearchContent extends StatefulWidget {
|
||||||
const UnsplashSearchContent({super.key});
|
const UnsplashSearchContent({super.key});
|
||||||
@@ -31,7 +31,7 @@ class _UnsplashSearchContentState extends State<UnsplashSearchContent> {
|
|||||||
Widget build(BuildContext context) {
|
Widget build(BuildContext context) {
|
||||||
final photoSearchModel = Provider.of<PhotoSearchModel>(context);
|
final photoSearchModel = Provider.of<PhotoSearchModel>(context);
|
||||||
|
|
||||||
return Split(
|
return split.Split(
|
||||||
axis: Axis.horizontal,
|
axis: Axis.horizontal,
|
||||||
initialFirstFraction: 0.4,
|
initialFirstFraction: 0.4,
|
||||||
firstChild: Scrollbar(
|
firstChild: Scrollbar(
|
||||||
|
|||||||
@@ -10,7 +10,7 @@ import 'package:provider/provider.dart';
|
|||||||
import '../model/photo_search_model.dart';
|
import '../model/photo_search_model.dart';
|
||||||
import '../unsplash/photo.dart';
|
import '../unsplash/photo.dart';
|
||||||
import '../widgets/photo_details.dart';
|
import '../widgets/photo_details.dart';
|
||||||
import '../widgets/split.dart';
|
import '../widgets/split.dart' as split;
|
||||||
|
|
||||||
class UnsplashSearchContent extends StatefulWidget {
|
class UnsplashSearchContent extends StatefulWidget {
|
||||||
const UnsplashSearchContent({super.key});
|
const UnsplashSearchContent({super.key});
|
||||||
@@ -32,7 +32,7 @@ class _UnsplashSearchContentState extends State<UnsplashSearchContent> {
|
|||||||
Widget build(BuildContext context) {
|
Widget build(BuildContext context) {
|
||||||
final photoSearchModel = Provider.of<PhotoSearchModel>(context);
|
final photoSearchModel = Provider.of<PhotoSearchModel>(context);
|
||||||
|
|
||||||
return Split(
|
return split.Split(
|
||||||
axis: Axis.horizontal,
|
axis: Axis.horizontal,
|
||||||
initialFirstFraction: 0.4,
|
initialFirstFraction: 0.4,
|
||||||
firstChild: Scrollbar(
|
firstChild: Scrollbar(
|
||||||
|
|||||||
@@ -16,7 +16,8 @@ declare -ar PROJECT_NAMES=(
|
|||||||
"add_to_app/prebuilt_module/flutter_module"
|
"add_to_app/prebuilt_module/flutter_module"
|
||||||
"analysis_defaults"
|
"analysis_defaults"
|
||||||
"android_splash_screen"
|
"android_splash_screen"
|
||||||
"animations"
|
# TODO: 'MaterialStateProperty' is deprecated and shouldn't be used.
|
||||||
|
# "animations"
|
||||||
"background_isolate_channels"
|
"background_isolate_channels"
|
||||||
"code_sharing/client"
|
"code_sharing/client"
|
||||||
"code_sharing/server"
|
"code_sharing/server"
|
||||||
@@ -33,9 +34,11 @@ declare -ar PROJECT_NAMES=(
|
|||||||
"experimental/federated_plugin/federated_plugin_windows"
|
"experimental/federated_plugin/federated_plugin_windows"
|
||||||
# TODO: 'onBackground' is deprecated and shouldn't be used.
|
# TODO: 'onBackground' is deprecated and shouldn't be used.
|
||||||
# "experimental/linting_tool"
|
# "experimental/linting_tool"
|
||||||
"experimental/pedometer"
|
# TODO: 'MaterialStateProperty' is deprecated and shouldn't be used.
|
||||||
"experimental/pedometer/example"
|
# "experimental/pedometer"
|
||||||
"experimental/varfont_shader_puzzle"
|
# "experimental/pedometer/example"
|
||||||
|
# 'MaterialStateProperty' is deprecated and shouldn't be used.
|
||||||
|
# "experimental/varfont_shader_puzzle"
|
||||||
"experimental/web_dashboard"
|
"experimental/web_dashboard"
|
||||||
"flutter_maps_firestore"
|
"flutter_maps_firestore"
|
||||||
"form_app"
|
"form_app"
|
||||||
@@ -53,7 +56,8 @@ declare -ar PROJECT_NAMES=(
|
|||||||
"platform_design"
|
"platform_design"
|
||||||
"platform_view_swift"
|
"platform_view_swift"
|
||||||
"provider_counter"
|
"provider_counter"
|
||||||
"provider_shopper"
|
# TODO: 'MaterialStateProperty' is deprecated and shouldn't be used.
|
||||||
|
# "provider_shopper"
|
||||||
"simple_shader"
|
"simple_shader"
|
||||||
"simplistic_calculator"
|
"simplistic_calculator"
|
||||||
# TODO(DomesticMouse): The method 'isSelectionWithinTextBounds' isn't defined for the type 'TextEditingController'
|
# TODO(DomesticMouse): The method 'isSelectionWithinTextBounds' isn't defined for the type 'TextEditingController'
|
||||||
|
|||||||
Reference in New Issue
Block a user