LoginSignup
0
0

More than 1 year has passed since last update.

flutter Button 3種類

Last updated at Posted at 2022-06-26

初めに

短い記事になりますが、flutterのButtonを3種類記述します。

TextButton


縁取り等の装飾のないシンプルなボタン

    TextButton(
      onPressed: (){
	//ボタンを押した時に呼ばれるコードを書く
      },
      child: Text('TextButton'),
    ),

ElevatedButton


物理的なボタンを実際に押した時のような、影がついているボタン。
よく使う。

    ElevatedButton(
      onPressed: (){},
      child: Text('ElevatedButton'),
    ),

OutlinedButton

外枠だけがついているボタン

    OutlinedButton(
      onPressed: (){},
      child: Text('OutlinedButton'),
    ),

終わりに

Twitterでも情報発信しておりますので、ぜひフォローお願い致します!
https://mobile.twitter.com/tatsuki_kt

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0