1
0
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:
Brett Morgan
2024-03-22 06:07:19 +11:00
committed by GitHub
parent ae664d228f
commit 9bf1ed6846
3 changed files with 13 additions and 9 deletions

View File

@@ -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(