Flutter

環境
Windows11 pro 64bit
Flutter 3.3.7

構文

decoration: InputDecoration( fillColor: 背景色の設定, filled: 背景色を ...

Flutter

環境
Windows11 pro 64bit
Flutter 3.3.7

構文

icon: Icon(アイコン),//アイコンlabel: Text('文字列'),//テキスト

TextButto ...

Flutter

環境
Windows11 pro 64bit
Flutter 3.3.7

構文

style: OutlinedButton.styleFrom( backgroundColor:/*背景色*/, ), ...

Flutter

環境
Windows11 pro 64bit
Flutter 3.3.7

構文

style: OutlinedButton.styleFrom( shape: RoundedRectangleBord ...

Flutter

環境
Windows11 pro 64bit
Flutter 3.3.7

構文

style: OutlinedButton.styleFrom( side: BorderSide( color:/*枠 ...

Flutter

環境
Windows11 pro 64bit
Flutter 3.3.7

構文

icon: Visibility( visible: false, child: Icon(Icons.arrow_dr ...

Flutter

環境
Windows11 pro 64bit
Flutter 3.3.7

構文

DropdownButton( iconSize: 0,

引数「iconSize」に「0」を設定してドロップダウンボ ...

Flutter

環境
Windows11 pro 64bit
Flutter 3.3.7

構文

DropdownButton( iconEnabledColor:/*アイコンの有効時の色*/, value: _tex ...

Flutter

環境
Windows11 pro 64bit
Flutter 3.3.7

構文

Icon( Icons.flutter_dash, color:/*色*/,),

Iconウェジェットの色を設定する ...

Flutter

環境
Windows11 pro 64bit
Flutter 3.3.7

構文

TabBar( labelColor:/*選択時の色*/, unselectedLabelColor:/*通常時の色*/ ...

Flutter

環境
Windows11 pro 64bit
Flutter 3.3.7

構文

Scaffold( body: Center(), bottomNavigationBar: TabBar( tabs: ...

Flutter

環境
Windows11 pro 64bit
Flutter 3.3.7

構文

ListView.builder( scrollDirection: Axis.horizontal, itemCoun ...

Flutter

環境
Windows11 pro 64bit
Flutter 3.3.7

構文

decoration: BoxDecoration( boxShadow: , ),

Containerに影をつける ...

Flutter

環境
Windows11 pro 64bit
Flutter 3.3.7

構文

child: FittedBox( child: Icon(アイコン), fit: BoxFit.fill,),

ア ...

Flutter

環境
Windows11 pro 64bit
Flutter 3.3.7

構文

GridView.count( crossAxisCount:/*数値*/, children: ; @override ...

Flutter

環境
Windows11 pro 64bit
Flutter 3.3.7

構文

enabledBorder: UnderlineInputBorder( borderSide: BorderSide( ...

Flutter

環境
Windows11 pro 64bit
Flutter 3.3.7

構文

ListView( children : [ SizedBox( width://横幅, height://高さ,

...

Flutter

環境
Windows11 pro 64bit
Flutter 3.3.7

構文

Card(elevation:/*影の大きさ*/,),

Cardの引数「elevation」に影の大きさを指定します ...