forked from flutter/packages
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Create CupertinoRadio Widget (#123296)
Create CupertinoRadio Widget
- Loading branch information
1 parent
8afd600
commit 84078c8
Showing
7 changed files
with
872 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,75 @@ | ||
// 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 [CupertinoRadio]. | ||
void main() => runApp(const CupertinoRadioApp()); | ||
|
||
class CupertinoRadioApp extends StatelessWidget { | ||
const CupertinoRadioApp({super.key}); | ||
|
||
static const String _title = 'CuptertinoRadio Example'; | ||
|
||
@override | ||
Widget build(BuildContext context) { | ||
return const CupertinoApp( | ||
theme: CupertinoThemeData(brightness: Brightness.light), | ||
home: CupertinoPageScaffold( | ||
navigationBar: CupertinoNavigationBar( | ||
middle: Text(_title), | ||
), | ||
child: SafeArea( | ||
child: CupertinoRadioExample(), | ||
), | ||
), | ||
); | ||
} | ||
} | ||
|
||
enum SingingCharacter { lafayette, jefferson } | ||
|
||
class CupertinoRadioExample extends StatefulWidget { | ||
const CupertinoRadioExample({super.key}); | ||
|
||
@override | ||
State<CupertinoRadioExample> createState() => _CupertinoRadioExampleState(); | ||
} | ||
|
||
class _CupertinoRadioExampleState extends State<CupertinoRadioExample> { | ||
SingingCharacter? _character = SingingCharacter.lafayette; | ||
|
||
@override | ||
Widget build(BuildContext context) { | ||
return CupertinoListSection( | ||
children: <Widget>[ | ||
CupertinoListTile( | ||
title: const Text('Lafayette'), | ||
leading: CupertinoRadio<SingingCharacter>( | ||
value: SingingCharacter.lafayette, | ||
groupValue: _character, | ||
onChanged: (SingingCharacter? value) { | ||
setState(() { | ||
_character = value; | ||
}); | ||
}, | ||
), | ||
), | ||
CupertinoListTile( | ||
title: const Text('Thomas Jefferson'), | ||
leading: CupertinoRadio<SingingCharacter>( | ||
value: SingingCharacter.jefferson, | ||
groupValue: _character, | ||
onChanged: (SingingCharacter? value) { | ||
setState(() { | ||
_character = value; | ||
}); | ||
}, | ||
), | ||
), | ||
], | ||
); | ||
} | ||
} |
78 changes: 78 additions & 0 deletions
78
examples/api/lib/cupertino/radio/cupertino_radio.toggleable.0.dart
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,78 @@ | ||
// 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 [CupertinoRadio.toggleable]. | ||
void main() => runApp(const CupertinoRadioApp()); | ||
|
||
class CupertinoRadioApp extends StatelessWidget { | ||
const CupertinoRadioApp({super.key}); | ||
|
||
static const String _title = 'CuptertinoRadio Toggleable Example'; | ||
|
||
@override | ||
Widget build(BuildContext context) { | ||
return const CupertinoApp( | ||
home: CupertinoPageScaffold( | ||
navigationBar: CupertinoNavigationBar( | ||
middle: Text(_title), | ||
), | ||
child: SafeArea( | ||
child: CupertinoRadioExample(), | ||
), | ||
), | ||
); | ||
} | ||
} | ||
|
||
enum SingingCharacter { mulligan, hamilton } | ||
|
||
class CupertinoRadioExample extends StatefulWidget { | ||
const CupertinoRadioExample({super.key}); | ||
|
||
@override | ||
State<CupertinoRadioExample> createState() => _CupertinoRadioExampleState(); | ||
} | ||
|
||
class _CupertinoRadioExampleState extends State<CupertinoRadioExample> { | ||
SingingCharacter? _character = SingingCharacter.mulligan; | ||
|
||
@override | ||
Widget build(BuildContext context) { | ||
return CupertinoListSection( | ||
children: <Widget>[ | ||
CupertinoListTile( | ||
title: const Text('Hercules Mulligan'), | ||
leading: CupertinoRadio<SingingCharacter>( | ||
value: SingingCharacter.mulligan, | ||
groupValue: _character, | ||
// TRY THIS: Try setting the toggleable value to false and | ||
// see how that changes the behavior of the widget. | ||
toggleable: true, | ||
onChanged: (SingingCharacter? value) { | ||
setState(() { | ||
_character = value; | ||
}); | ||
}, | ||
), | ||
), | ||
CupertinoListTile( | ||
title: const Text('Eliza Hamilton'), | ||
leading: CupertinoRadio<SingingCharacter>( | ||
value: SingingCharacter.hamilton, | ||
groupValue: _character, | ||
toggleable: true, | ||
onChanged: (SingingCharacter? value) { | ||
setState(() { | ||
_character = value; | ||
}); | ||
}, | ||
), | ||
), | ||
], | ||
); | ||
} | ||
} |
32 changes: 32 additions & 0 deletions
32
examples/api/test/cupertino/radio/cupertino_radio.0_test.dart
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
// 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'; | ||
import 'package:flutter_api_samples/cupertino/radio/cupertino_radio.0.dart' as example; | ||
import 'package:flutter_test/flutter_test.dart'; | ||
|
||
void main() { | ||
testWidgets('Has 2 CupertinoRadio widgets', (WidgetTester tester) async { | ||
await tester.pumpWidget( | ||
const example.CupertinoRadioApp(), | ||
); | ||
|
||
expect(find.byType(CupertinoRadio<example.SingingCharacter>), findsNWidgets(2)); | ||
|
||
CupertinoRadio<example.SingingCharacter> radio = tester.widget(find.byType(CupertinoRadio<example.SingingCharacter>).first); | ||
expect(radio.groupValue, example.SingingCharacter.lafayette); | ||
|
||
radio = tester.widget(find.byType(CupertinoRadio<example.SingingCharacter>).last); | ||
expect(radio.groupValue, example.SingingCharacter.lafayette); | ||
|
||
await tester.tap(find.byType(CupertinoRadio<example.SingingCharacter>).last); | ||
await tester.pumpAndSettle(); | ||
|
||
radio = tester.widget(find.byType(CupertinoRadio<example.SingingCharacter>).last); | ||
expect(radio.groupValue, example.SingingCharacter.jefferson); | ||
|
||
radio = tester.widget(find.byType(CupertinoRadio<example.SingingCharacter>).first); | ||
expect(radio.groupValue, example.SingingCharacter.jefferson); | ||
}); | ||
} |
38 changes: 38 additions & 0 deletions
38
examples/api/test/cupertino/radio/cupertino_radio.toggleable.0_test.dart
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
// 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'; | ||
import 'package:flutter_api_samples/cupertino/radio/cupertino_radio.toggleable.0.dart' as example; | ||
import 'package:flutter_test/flutter_test.dart'; | ||
|
||
void main() { | ||
testWidgets('Has 2 CupertinoRadio widgets that can be toggled off', (WidgetTester tester) async { | ||
await tester.pumpWidget( | ||
const example.CupertinoRadioApp(), | ||
); | ||
|
||
expect(find.byType(CupertinoRadio<example.SingingCharacter>), findsNWidgets(2)); | ||
|
||
CupertinoRadio<example.SingingCharacter> radio = tester.widget(find.byType(CupertinoRadio<example.SingingCharacter>).first); | ||
expect(radio.groupValue, example.SingingCharacter.mulligan); | ||
|
||
radio = tester.widget(find.byType(CupertinoRadio<example.SingingCharacter>).last); | ||
expect(radio.groupValue, example.SingingCharacter.mulligan); | ||
|
||
await tester.tap(find.byType(CupertinoRadio<example.SingingCharacter>).last); | ||
await tester.pumpAndSettle(); | ||
|
||
radio = tester.widget(find.byType(CupertinoRadio<example.SingingCharacter>).last); | ||
expect(radio.groupValue, example.SingingCharacter.hamilton); | ||
|
||
radio = tester.widget(find.byType(CupertinoRadio<example.SingingCharacter>).first); | ||
expect(radio.groupValue, example.SingingCharacter.hamilton); | ||
|
||
await tester.tap(find.byType(CupertinoRadio<example.SingingCharacter>).last); | ||
await tester.pumpAndSettle(); | ||
|
||
radio = tester.widget(find.byType(CupertinoRadio<example.SingingCharacter>).last); | ||
expect(radio.groupValue, null); | ||
}); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.