mirror of
https://github.com/flutter/flutter.git
synced 2026-01-20 20:55:29 +08:00
Migrates some - but not all - samples to use the new `RadioGroup` widget. See: [https://docs.flutter.dev/release/breaking-changes/radio-api-redesign](https://docs.flutter.dev/release/breaking-changes/radio-api-redesign) Part of: https://github.com/flutter/flutter/issues/179088 ## Pre-launch Checklist - [x] I read the [Contributor Guide] and followed the process outlined there for submitting PRs. - [x] I read the [Tree Hygiene] wiki page, which explains my responsibilities. - [x] I read and followed the [Flutter Style Guide], including [Features we expect every widget to implement]. - [x] I signed the [CLA]. - [x] I listed at least one issue that this PR fixes in the description above. - [x] I updated/added relevant documentation (doc comments with `///`). - [x] I added new tests to check the change I am making, or this PR is [test-exempt]. - [x] I followed the [breaking change policy] and added [Data Driven Fixes] where supported. - [x] All existing and new tests are passing. If you need help, consider asking for advice on the #hackers-new channel on [Discord]. **Note**: The Flutter team is currently trialing the use of [Gemini Code Assist for GitHub](https://developers.google.com/gemini-code-assist/docs/review-github-code). Comments from the `gemini-code-assist` bot should not be taken as authoritative feedback from the Flutter team. If you find its comments useful you can update your code accordingly, but if you are unsure or disagree with the feedback, please feel free to wait for a Flutter team member's review for guidance on which automated comments should be addressed. <!-- Links --> [Contributor Guide]: https://github.com/flutter/flutter/blob/main/docs/contributing/Tree-hygiene.md#overview [Tree Hygiene]: https://github.com/flutter/flutter/blob/main/docs/contributing/Tree-hygiene.md [test-exempt]: https://github.com/flutter/flutter/blob/main/docs/contributing/Tree-hygiene.md#tests [Flutter Style Guide]: https://github.com/flutter/flutter/blob/main/docs/contributing/Style-guide-for-Flutter-repo.md [Features we expect every widget to implement]: https://github.com/flutter/flutter/blob/main/docs/contributing/Style-guide-for-Flutter-repo.md#features-we-expect-every-widget-to-implement [CLA]: https://cla.developers.google.com/ [flutter/tests]: https://github.com/flutter/tests [breaking change policy]: https://github.com/flutter/flutter/blob/main/docs/contributing/Tree-hygiene.md#handling-breaking-changes [Discord]: https://github.com/flutter/flutter/blob/main/docs/contributing/Chat.md [Data Driven Fixes]: https://github.com/flutter/flutter/blob/main/docs/contributing/Data-driven-Fixes.md
201 lines
5.6 KiB
Dart
201 lines
5.6 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/material.dart';
|
|
import 'package:flutter/rendering.dart';
|
|
|
|
/// Flutter code sample for [ScrollDirection].
|
|
|
|
void main() => runApp(const ExampleApp());
|
|
|
|
class ExampleApp extends StatelessWidget {
|
|
const ExampleApp({super.key});
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return const MaterialApp(home: MyWidget());
|
|
}
|
|
}
|
|
|
|
class MyWidget extends StatefulWidget {
|
|
const MyWidget({super.key});
|
|
|
|
@override
|
|
State<MyWidget> createState() => _MyWidgetState();
|
|
}
|
|
|
|
class _MyWidgetState extends State<MyWidget> {
|
|
final List<String> alphabet = <String>[
|
|
'A',
|
|
'B',
|
|
'C',
|
|
'D',
|
|
'E',
|
|
'F',
|
|
'G',
|
|
'H',
|
|
'I',
|
|
'J',
|
|
'K',
|
|
'L',
|
|
'M',
|
|
'N',
|
|
'O',
|
|
'P',
|
|
'Q',
|
|
'R',
|
|
'S',
|
|
'T',
|
|
'U',
|
|
'V',
|
|
'W',
|
|
'X',
|
|
'Y',
|
|
'Z',
|
|
];
|
|
final Widget spacer = const SizedBox.square(dimension: 10);
|
|
ScrollDirection scrollDirection = ScrollDirection.idle;
|
|
AxisDirection _axisDirection = AxisDirection.down;
|
|
|
|
Widget _getArrows() {
|
|
final Widget arrow = switch (_axisDirection) {
|
|
AxisDirection.up => const Icon(Icons.arrow_upward_rounded),
|
|
AxisDirection.down => const Icon(Icons.arrow_downward_rounded),
|
|
AxisDirection.left => const Icon(Icons.arrow_back_rounded),
|
|
AxisDirection.right => const Icon(Icons.arrow_forward_rounded),
|
|
};
|
|
return Flex(
|
|
direction: flipAxis(axisDirectionToAxis(_axisDirection)),
|
|
mainAxisAlignment: MainAxisAlignment.center,
|
|
children: <Widget>[arrow, arrow],
|
|
);
|
|
}
|
|
|
|
void _onAxisDirectionChanged(AxisDirection? axisDirection) {
|
|
if (axisDirection != null && axisDirection != _axisDirection) {
|
|
setState(() {
|
|
// Respond to change in axis direction.
|
|
_axisDirection = axisDirection;
|
|
});
|
|
}
|
|
}
|
|
|
|
Widget _getLeading() {
|
|
return Container(
|
|
color: Colors.blue[100],
|
|
padding: const EdgeInsets.all(8.0),
|
|
child: Column(
|
|
mainAxisAlignment: MainAxisAlignment.spaceBetween,
|
|
children: <Widget>[
|
|
Text(axisDirectionToAxis(_axisDirection).toString()),
|
|
spacer,
|
|
Text(_axisDirection.toString()),
|
|
spacer,
|
|
const Text('GrowthDirection.forward'),
|
|
spacer,
|
|
Text(scrollDirection.toString()),
|
|
spacer,
|
|
_getArrows(),
|
|
],
|
|
),
|
|
);
|
|
}
|
|
|
|
Widget _getRadioRow() {
|
|
return DefaultTextStyle(
|
|
style: const TextStyle(fontWeight: FontWeight.bold, color: Colors.white),
|
|
child: RadioTheme(
|
|
data: RadioThemeData(
|
|
fillColor: WidgetStateProperty.all<Color>(Colors.white),
|
|
),
|
|
child: Padding(
|
|
padding: const EdgeInsets.all(8.0),
|
|
child: RadioGroup<AxisDirection>(
|
|
groupValue: _axisDirection,
|
|
onChanged: _onAxisDirectionChanged,
|
|
child: Row(
|
|
mainAxisAlignment: MainAxisAlignment.spaceAround,
|
|
children: <Widget>[
|
|
Radio<AxisDirection>(value: AxisDirection.up),
|
|
const Text('up'),
|
|
spacer,
|
|
Radio<AxisDirection>(value: AxisDirection.down),
|
|
const Text('down'),
|
|
spacer,
|
|
Radio<AxisDirection>(value: AxisDirection.left),
|
|
const Text('left'),
|
|
spacer,
|
|
Radio<AxisDirection>(value: AxisDirection.right),
|
|
const Text('right'),
|
|
spacer,
|
|
],
|
|
),
|
|
),
|
|
),
|
|
),
|
|
);
|
|
}
|
|
|
|
bool _handleNotification(UserScrollNotification notification) {
|
|
if (notification.direction != scrollDirection) {
|
|
setState(() {
|
|
scrollDirection = notification.direction;
|
|
});
|
|
}
|
|
return false;
|
|
}
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return Scaffold(
|
|
appBar: AppBar(
|
|
title: const Text('ScrollDirections'),
|
|
bottom: PreferredSize(
|
|
preferredSize: const Size.fromHeight(50),
|
|
child: Padding(
|
|
padding: const EdgeInsets.all(8.0),
|
|
child: _getRadioRow(),
|
|
),
|
|
),
|
|
),
|
|
body: NotificationListener<UserScrollNotification>(
|
|
onNotification: _handleNotification,
|
|
// Also works for ListView.builder, which creates a SliverList for itself.
|
|
// A CustomScrollView allows multiple slivers to be composed together.
|
|
child: CustomScrollView(
|
|
// This method is available to conveniently determine if an scroll
|
|
// view is reversed by its AxisDirection.
|
|
reverse: axisDirectionIsReversed(_axisDirection),
|
|
// This method is available to conveniently convert an AxisDirection
|
|
// into its Axis.
|
|
scrollDirection: axisDirectionToAxis(_axisDirection),
|
|
slivers: <Widget>[
|
|
SliverList.builder(
|
|
itemCount: 27,
|
|
itemBuilder: (BuildContext context, int index) {
|
|
final Widget child;
|
|
if (index == 0) {
|
|
child = _getLeading();
|
|
} else {
|
|
child = Container(
|
|
color: index.isEven
|
|
? Colors.amber[100]
|
|
: Colors.amberAccent,
|
|
padding: const EdgeInsets.all(8.0),
|
|
child: Center(child: Text(alphabet[index - 1])),
|
|
);
|
|
}
|
|
return Padding(
|
|
padding: const EdgeInsets.all(8.0),
|
|
child: child,
|
|
);
|
|
},
|
|
),
|
|
],
|
|
),
|
|
),
|
|
);
|
|
}
|
|
}
|