FlutterのAlertDialog
ウィジェットの用途と使い方のまとめ記事です。
本記事ではAlertDialog
のサンプルコードを使いながら基本的な使い方、知っておきたい基本プロパティを解説していきます。
目次
AlertDialogとは?
AlertDialog
はアラートダイアログ(ポップアップウィンドウ)を表示できるウィジェットです。
AlertDialogの基本的な使い方
AlertDialog
はshowDialog()
を実行して表示できます。(showDialog()
の書き方は下のサンプルコードを参照)AlertDialog
のtitle
でアラートダイアログのタイトル、content
でコンテンツを指定し、actions
に任意のウィジェットを配置できます。AlertDialog
を非表示するにはNavigator.of(context).pop()
を実行します。
showDialog(
context: context,
builder: (BuildContext context) {
return AlertDialog(
title: Text("タイトル"),
content: Text('これは「AlertDialog」です。'),
actions: [
TextButton(
child: Text("OK"),
onPressed: () {
Navigator.of(context).pop();
},
),
],
);
},
);
周囲の黒い部分をタップして閉じないようにする
AlertDialog
はNavigator.of(context).pop()
以外にもアラートダイアログの周囲の黒い部分をタップして閉じることができます。
周囲の黒い部分をタップして閉じないようにするにはshowDialog()
のbarrierDismissible
の引数にfalse
を渡します。
showDialog(
barrierDismissible: false,
context: context,
builder: (BuildContext context) {
return AlertDialog(
title: Text("タイトル"),
content: Text('これは「AlertDialog」です。'),
actions: [
TextButton(
child: Text("OK"),
onPressed: () {
Navigator.of(context).pop();
},
),
],
);
},
);
AlertDialogで知っておきたい基本プロパティ
スクロールできます
プロパティ名 | 説明 |
---|---|
backgroundColor | アラートダイアログの背景色を指定 |
elevation | アラートダイアログの影の高さを調整 |
shape | アラートダイアログの形を指定 |
backgroundColor:アラートダイアログの背景色を指定
backgroundColor
の引数にColor
渡してアラートダイアログの背景色を指定できます。
AlertDialog(
title: Text("タイトル"),
content: Text('これは「AlertDialog」です。'),
backgroundColor: Colors.yellow,
actions: [
TextButton(
child: Text("OK"),
onPressed: () {
Navigator.of(context).pop();
},
),
],
)
アウトプット(左側)
elevation:アラートダイアログの影の高さを調整
elevation
の引数にdouble値を渡して影の高さを調整できます。
AlertDialog(
title: Text("タイトル"),
content: Text('これは「AlertDialog」です。'),
elevation: 5,
actions: [
TextButton(
child: Text("OK"),
onPressed: () {
Navigator.of(context).pop();
},
),
],
);
アウトプット(左側)
shape:アラートダイアログの形を指定
shape
の引数にRoundedRectangleBorder()
を渡して角丸の調整ができます。RoundedRectangleBorder()
>borderRadius
>BorderRadius.circular()
の引数にdouble値を渡して角丸を調整します。
AlertDialog(
title: Text("タイトル"),
content: Text('これは「AlertDialog」です。'),
shape: RoundedRectangleBorder(
borderRadius: BorderRadius.circular(20),
),
actions: [
TextButton(
child: Text("OK"),
onPressed: () {
Navigator.of(context).pop();
},
),
],
);
アウトプット(左側)
サンプルコード
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(
debugShowCheckedModeBanner: false,
home: Scaffold(
appBar: AppBar(title: const Text('Flutter')),
body: const AlertDialogExample(),
),
);
}
}
class AlertDialogExample extends StatefulWidget {
const AlertDialogExample({super.key});
@override
State<AlertDialogExample> createState() => _AlertDialogExampleState();
}
class _AlertDialogExampleState extends State<AlertDialogExample> {
@override
Widget build(BuildContext context) {
return Center(
child: ElevatedButton(
child: Text('Show AlertDialog'),
onPressed: () {
showDialog(
context: context,
builder: (BuildContext context) {
return AlertDialog(
title: Text("タイトル"),
content: Text('これは「AlertDialog」です。'),
elevation: 10,
shape: RoundedRectangleBorder(
borderRadius: BorderRadius.circular(20),
),
actions: [
TextButton(
child: Text("OK"),
onPressed: () {
Navigator.of(context).pop();
},
),
],
);
},
);
},
),
);
}
}
合わせて読みたい
【Flutter】CheckBoxの使い方|チェックボックスを実装
FlutterのCheckBoxウィジェットの用途と使い方のまとめ記事です。本記事ではCheckBoxのサンプルコードを使いながら基本的な使い方、知っておきたい基本プロパティを解説…
【Flutter】CheckboxListTileの使い方|ラベル付きチェックボックスを実装
FlutterのCheckboxListTileウィジェットの用途と使い方のまとめ記事です。本記事ではCheckboxListTileのサンプルコードを使いながら基本的な使い方、知っておきたい基本…
【Flutter】Radioの使い方|ラジオボタン(オプションボタン)を実装
FlutterのRadioウィジェットの用途と使い方のまとめ記事です。本記事ではRadioのサンプルコードを使いながら基本的な使い方、知っておきたい基本プロパティを解説してい…
参考サイト
- https://api.flutter.dev/flutter/material/AlertDialog-class.html
- https://www.youtube.com/watch?v=KPxq3SLjg98&ab_channel=HeyFlutter%E2%80%A4com