FlutterのRadio
ウィジェットの用途と使い方のまとめ記事です。
本記事ではRadio
のサンプルコードを使いながら基本的な使い方、知っておきたい基本プロパティを解説していきます。
目次
Radioとは?
Radio
とはラジオボタン(オプションボタン)を実装できるウィジェットです。
Radioの基本的な使い方
Radio
の基本形は下のサンプルコードをご覧ください。
ラジオボタンのオプションの数だけRadio
を作成し、それぞれのgroupValue
に同名の変数を渡すことで同一のグループとして扱います。
value
には各ラジオボタンの固有となる値を渡し、onChanged
でgroupValue
の値を更新(下のサンプルコード参照)します。
enum FruitList { apple, banana, grape }
FruitList _fruit = FruitList.apple;
Column(
mainAxisAlignment: MainAxisAlignment.center,
children: [
ListTile(
title: Text('Apple'),
leading: Radio(
value: FruitList.apple,
groupValue: _fruit,
onChanged: (value) {
setState(() {
_fruit = value!;
});
},
),
),
ListTile(
title: Text('Banana'),
leading: Radio(
value: FruitList.banana,
groupValue: _fruit,
onChanged: (value) {
setState(() {
_fruit = value!;
});
},
),
),
ListTile(
title: Text('Grape'),
leading: Radio(
value: FruitList.grape,
groupValue: _fruit,
onChanged: (value) {
setState(() {
_fruit = value!;
});
},
),
)
],
)
Radioで知っておきたい基本プロパティ
スクロールできます
プロパティ名 | 説明 |
---|---|
activeColor | ラジオボタンが選択されている場合の背景色を指定 |
activeColor:ラジオボタンが選択されている場合の背景色を指定
activeColor
の引数にColor
を渡してラジオボタンの背景色を指定できます。
Radio(
activeColor: Colors.amber,
value: FruitList.apple,
groupValue: _fruit,
onChanged: (value) {
setState(() {
_fruit = value!;
});
},
),
アウトプット(左側)
サンプルコード
import 'package:flutter/material.dart';
void main() => runApp(const MyApp());
class MyApp extends StatelessWidget {
const MyApp({super.key});
@override
Widget build(BuildContext context) {
return MaterialApp(
home: Scaffold(
appBar: AppBar(title: Text('Flutter')),
body: const RadioExample(),
),
);
}
}
enum FruitList { apple, banana, grape }
class RadioExample extends StatefulWidget {
const RadioExample({super.key});
@override
State<RadioExample> createState() => _RadioExampleState();
}
class _RadioExampleState extends State<RadioExample> {
FruitList _fruit = FruitList.apple;
@override
Widget build(BuildContext context) {
return Column(
mainAxisAlignment: MainAxisAlignment.center,
children: [
ListTile(
title: Text('Apple'),
leading: Radio(
value: FruitList.apple,
groupValue: _fruit,
onChanged: (value) {
setState(() {
_fruit = value!;
});
},
),
),
ListTile(
title: Text('Banana'),
leading: Radio(
value: FruitList.banana,
groupValue: _fruit,
onChanged: (value) {
setState(() {
_fruit = value!;
});
},
),
),
ListTile(
title: Text('Grape'),
leading: Radio(
value: FruitList.grape,
groupValue: _fruit,
onChanged: (value) {
setState(() {
_fruit = value!;
});
},
),
)
],
);
}
}
合わせて読みたい
【Flutter】CheckBoxの使い方|チェックボックスを実装
FlutterのCheckBoxウィジェットの用途と使い方のまとめ記事です。本記事ではCheckBoxのサンプルコードを使いながら基本的な使い方、知っておきたい基本プロパティを解説…
【Flutter】CheckboxListTileの使い方|ラベル付きチェックボックスを実装
FlutterのCheckboxListTileウィジェットの用途と使い方のまとめ記事です。本記事ではCheckboxListTileのサンプルコードを使いながら基本的な使い方、知っておきたい基本…