Flutter SingleChildScrollViewの高さを変えるサンプル
環境
Windows11 pro 64bit
Flutter 3.3.7
構文
Container(
height: 高さ,
child: SingleChildScrollView ...
Flutter CupertinoActivityIndicatorの円のサイズを変えるサンプル
環境
Windows11 pro 64bit
Flutter 3.3.7
構文
CupertinoActivityIndicator(
radius: size,//円のサイズ
), ...
Flutter Tabのアイコンを左に表示する方法
環境
Windows11 pro 64bit
Flutter 3.3.7
概要
Tab( child: Row( children: , ),),TabのchildにRowウェジェットを指定しま ...
Flutter ElevatedButtonのパディングを設定する方法
環境
Windows11 pro 64bit
Flutter 3.3.7
概要
ElevatedButton( style: ElevatedButton.styleFrom( padding: Ed ...Flutter MaterialButtonの形状を指定するサンプル
環境
Windows11 pro 64bit
Flutter 3.3.7
構文
MaterialButtonの形状を設定するには、引数「shape」を使います。
CircleBorder:丸 ...
Flutter TextFormFieldの文字数を制限する方法
環境
Windows11 pro 64bit
Flutter 3.3.7
構文
TextFormField( maxLength:/*最大文字数*/,),TextFormFieldの引数「max ...
Flutter heightを使ってTextの行間を設定するサンプル
環境
Windows11 pro 64bit
Flutter 3.3.7
構文
Text( 'サンプルのテキスト', style: TextStyle( height:/*行間の大きさを文字の倍率で指 ...Flutter letterSpacingを使ってTextの行間を設定する方法
環境
Windows11 pro 64bit
Flutter 3.3.7
操作方法
TextStyleの引数「letterSpacing」を使う方法
Flutter Rowの要素を右端に配置するサンプル
環境
Windows11 pro 64bit
Flutter 3.3.7
構文
Row( mainAxisAlignment: MainAxisAlignment.end, children: ,) ...Flutter WebViewの背景色を設定する方法
環境
Windows11 pro 64bit
Flutter 3.3.7
構文
WebViewの背景色を設定するには、引数「backgroundColor」を使います。
形式
Flutter TextFormFieldの右側にアイコンを表示する
環境
Windows11 pro 64bit
Flutter 3.3.7
構文
TextFormFieldの右側にアイコンを表示するには、InputDecorationの引数「suffixIcon」 ...
Flutter TextFromFieldに枠線を付ける
環境
Windows11 pro 64bit
Flutter 3.3.7
構文
TextFormFieldに枠線を付けるには、引数「decoration」を使います。
使用例
Te ...Flutter TextFormFieldのテキストを縦方向で中央に寄せる
環境
Windows11 pro 64bit
Flutter 3.3.7
構文
TextFormFieldのテキストを縦方向で真ん中に寄せるには、引数「textAlignVertical」を使います ...
Flutter SnackBarの横幅を設定する方法
環境
Windows11 pro 64bit
Flutter 3.3.7
構文
SnackBarの横幅を設定するには、引数「width」と引数「behavior」を使います。
Flutter IconButtonのタップ中の色を変えるサンプル
環境
Windows11 pro 64bit
Flutter 3.3.7
概要
IconButtonのタップ中の色を変えるには、引数「highlightColor」を使います。
使用例 ...
Flutter アイコン(Icon)の背景色を設定する方法
環境
Windows11 pro 64bit
Flutter 3.3.7
1.Inkを使う方法
説明
InkのchildにIconウェジェットを指定します。
Inkの引数「color ...
Flutter アイコン(Icon)を右に寄せるサンプル
環境
Windows11 pro 64bit
Flutter 3.3.7
構文
Align( alignment: Alignment.centerRight, child: Icon(/*アイコン* ...Flutter SDKのパスを確認する方法
環境
Windows11 pro 64bit
Flutter 3.3.7
操作方法
1.コマンドプロンプトを起動します。
2.以下のコマンドを実行します。
flutter doc ...