flutter/examples/api/lib/cupertino/refresh/cupertino_sliver_refresh_control.0.dart
Michael Goderbauer 5491c8c146
Auto-format Framework (#160545)
This auto-formats all *.dart files in the repository outside of the
`engine` subdirectory and enforces that these files stay formatted with
a presubmit check.

**Reviewers:** Please carefully review all the commits except for the
one titled "formatted". The "formatted" commit was auto-generated by
running `dev/tools/format.sh -a -f`. The other commits were hand-crafted
to prepare the repo for the formatting change. I recommend reviewing the
commits one-by-one via the "Commits" tab and avoiding Github's "Files
changed" tab as it will likely slow down your browser because of the
size of this PR.

---------

Co-authored-by: Kate Lovett <katelovett@google.com>
Co-authored-by: LongCatIsLooong <31859944+LongCatIsLooong@users.noreply.github.com>
2024-12-19 20:06:21 +00:00

71 lines
2.2 KiB
Dart

// Copyright 2014 The Flutter Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
import 'package:flutter/cupertino.dart';
/// Flutter code sample for [CupertinoSliverRefreshControl].
void main() => runApp(const RefreshControlApp());
class RefreshControlApp extends StatelessWidget {
const RefreshControlApp({super.key});
@override
Widget build(BuildContext context) {
return const CupertinoApp(
theme: CupertinoThemeData(brightness: Brightness.light),
home: RefreshControlExample(),
);
}
}
class RefreshControlExample extends StatefulWidget {
const RefreshControlExample({super.key});
@override
State<RefreshControlExample> createState() => _RefreshControlExampleState();
}
class _RefreshControlExampleState extends State<RefreshControlExample> {
List<Color> colors = <Color>[
CupertinoColors.systemYellow,
CupertinoColors.systemOrange,
CupertinoColors.systemPink,
];
List<Widget> items = <Widget>[
Container(color: CupertinoColors.systemPink, height: 100.0),
Container(color: CupertinoColors.systemOrange, height: 100.0),
Container(color: CupertinoColors.systemYellow, height: 100.0),
];
@override
Widget build(BuildContext context) {
return CupertinoPageScaffold(
navigationBar: const CupertinoNavigationBar(
middle: Text('CupertinoSliverRefreshControl Sample'),
),
child: CustomScrollView(
physics: const BouncingScrollPhysics(parent: AlwaysScrollableScrollPhysics()),
slivers: <Widget>[
const CupertinoSliverNavigationBar(largeTitle: Text('Scroll down')),
CupertinoSliverRefreshControl(
onRefresh: () async {
await Future<void>.delayed(const Duration(milliseconds: 1000));
setState(() {
items.insert(0, Container(color: colors[items.length % 3], height: 100.0));
});
},
),
SliverList(
delegate: SliverChildBuilderDelegate(
(BuildContext context, int index) => items[index],
childCount: items.length,
),
),
],
),
);
}
}