Flutter TextFieldウェジェットの背景色を設定するサンプル
環境
Windows11 pro 64bit
Flutter 3.3.7
構文
decoration: InputDecoration( fillColor: 背景色の設定, filled: 背景色を ...Flutter アイコン付きのTextButtonを表示するサンプル
環境
Windows11 pro 64bit
Flutter 3.3.7
構文
icon: Icon(アイコン),//アイコンlabel: Text('文字列'),//テキストTextButto ...
Flutter OutlinedButtonの背景色を変えるサンプル
環境
Windows11 pro 64bit
Flutter 3.3.7
構文
style: OutlinedButton.styleFrom( backgroundColor:/*背景色*/, ), ...Flutter OutlinedButtonを角丸にするサンプル
環境
Windows11 pro 64bit
Flutter 3.3.7
構文
style: OutlinedButton.styleFrom( shape: RoundedRectangleBord ...Flutter OutlinedButtonの枠線の色を変えるサンプル
環境
Windows11 pro 64bit
Flutter 3.3.7
構文
style: OutlinedButton.styleFrom( side: BorderSide( color:/*枠 ...Flutter Visibilityを使ってドロップダウンボタンのアイコンを削除するサンプル
環境
Windows11 pro 64bit
Flutter 3.3.7
構文
icon: Visibility( visible: false, child: Icon(Icons.arrow_dr ...Flutter iconSizeでドロップダウンボタンのアイコンを削除するサンプル
環境
Windows11 pro 64bit
Flutter 3.3.7
構文
DropdownButton( iconSize: 0,引数「iconSize」に「0」を設定してドロップダウンボ ...
Flutter DropdownButtonのアイコンの有効時の色を設定するサンプル
環境
Windows11 pro 64bit
Flutter 3.3.7
構文
DropdownButton( iconEnabledColor:/*アイコンの有効時の色*/, value: _tex ...Flutter Iconウェジェットの色を変えるサンプル
環境
Windows11 pro 64bit
Flutter 3.3.7
構文
Icon( Icons.flutter_dash, color:/*色*/,),Iconウェジェットの色を設定する ...
Flutter TabBarのアイコンの色を変えるサンプル
環境
Windows11 pro 64bit
Flutter 3.3.7
構文
TabBar( labelColor:/*選択時の色*/, unselectedLabelColor:/*通常時の色*/ ...Flutter 画面の下にTabBarを表示するサンプル
環境
Windows11 pro 64bit
Flutter 3.3.7
構文
Scaffold( body: Center(), bottomNavigationBar: TabBar( tabs: ...Flutter ListView.builderを横スクロールにするサンプル
環境
Windows11 pro 64bit
Flutter 3.3.7
構文
ListView.builder( scrollDirection: Axis.horizontal, itemCoun ...Flutter Containerに影をつけるサンプル
環境
Windows11 pro 64bit
Flutter 3.3.7
構文
decoration: BoxDecoration( boxShadow: , ),Containerに影をつける ...
Flutter FittedBoxを使ってアイコンをContainerのサイズに合わせるサンプル
環境
Windows11 pro 64bit
Flutter 3.3.7
構文
child: FittedBox( child: Icon(アイコン), fit: BoxFit.fill,),ア ...
Flutter Cardをグリッドで表示するサンプル
環境
Windows11 pro 64bit
Flutter 3.3.7
構文
GridView.count( crossAxisCount:/*数値*/, children: ; @override ...Flutter TextFormFieldのエラー時の下線の色を設定するサンプル
環境
Windows11 pro 64bit
Flutter 3.3.7
構文
enabledBorder: UnderlineInputBorder( borderSide: BorderSide( ...Flutter ListView内のCardの横幅を設定するサンプル
環境
Windows11 pro 64bit
Flutter 3.3.7
構文
ListView( children : [ SizedBox( width://横幅, height://高さ,...
Flutter Cardの影の大きさを設定するサンプル
環境
Windows11 pro 64bit
Flutter 3.3.7
構文
Card(elevation:/*影の大きさ*/,),Cardの引数「elevation」に影の大きさを指定します ...