Flutter のButton Widgetはいくつかありますが、立体的ないわゆるボタン的なものを使いたい時はElevatedButtonがいいでしょう
ElevatedButton
ボタンとして立体的に表示されるタイプのButton Widgetです
タップすると色が変わる挙動をします
styleの変更
これがシンプルなElevateButtonになります
1 2 3 4 5 |
<pre class="lang:default decode:true">ElevatedButton( //style: style, // ボタンの色や形などのスタイルを設定 onPressed: (){}, // ボタンをPressされた時の挙動 child: Text('ElevatedButton'),// ボタンに表示される文字 ), |
これを色々と装飾してみたいと思います
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 |
ElevatedButton( style: ElevatedButton.styleFrom( // フォントサイズ textStyle: const TextStyle(fontSize: 20), // 背景色 backgroundColor: Colors.blue.shade50, // 前景色 foregroundColor: Colors.blue, // ボタン角丸形状 shape: RoundedRectangleBorder( borderRadius: BorderRadius.circular(20), ), // 影の深み elevation: 20, // バタンの外枠 side: const BorderSide( color: Colors.blue, width: 2, ), // ボタンの内側の余白 padding: const EdgeInsets.symmetric( horizontal: 50.0, vertical: 20.0 ), ), onPressed: (){}, child: const Text('ElevatedButton'), ), |
このようになります
サンプルコード
onPressed の例として
一般的なボタンをタップすると文字が変わるというシンプルなコードです
main.dart
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 |
import 'package:flutter/material.dart'; void main() => runApp(const ElevatedButtonApp()); class ElevatedButtonApp extends StatelessWidget { const ElevatedButtonApp({super.key}); @override Widget build(BuildContext context) { return MaterialApp( home: Scaffold( appBar: AppBar(title: const Text('ElevatedButton')), body: const ElevatedButtonExample(), ), ); } } class ElevatedButtonExample extends StatefulWidget { const ElevatedButtonExample({super.key}); @override State<ElevatedButtonExample> createState() => _ElevatedButtonExampleState(); } class _ElevatedButtonExampleState extends State<ElevatedButtonExample> { String _displayText = "Text"; // bool buttonflg = false; void changeText(){ setState((){ if(_displayText == "Text"){ _displayText = "Changed !"; } else{ _displayText = "Text"; } }); } @override Widget build(BuildContext context) { final ButtonStyle style = ElevatedButton.styleFrom(textStyle: const TextStyle(fontSize: 20)); return Center( child: Column( mainAxisSize: MainAxisSize.min, children: <Widget>[ Text( _displayText, style: const TextStyle(fontSize: 24), ), const SizedBox(height: 30), ElevatedButton( // style: style, style: ElevatedButton.styleFrom( // フォントサイズ textStyle: const TextStyle(fontSize: 20), // 背景色 backgroundColor: Colors.blue.shade50, // 前景色 foregroundColor: Colors.blue, // ボタン角丸形状 shape: RoundedRectangleBorder( borderRadius: BorderRadius.circular(20), ), // 影の深み elevation: 20, // バタンの外枠 side: const BorderSide( color: Colors.blue, width: 2, ), // ボタンの内側の余白 padding: const EdgeInsets.symmetric( horizontal: 50.0, vertical: 20.0 ), ), // onPressed: (){}, // child: const Text('ElevatedButton'), // ), onPressed: changeText, child: const Text('ElevatedButton'), ), ], ), ); } } |
タップすると
onPressedの機能を確認できました
Reference:
ElevatedButton Class
Widget catalog