Flutter TextFormFieldのカーソルの太さを設定するサンプル
環境
Windows11 pro 64bit
Flutter 3.3.7
構文
cursorWidth: カーソルの太さ
TextFormFieldのカーソルの太さを設定するには、引数「cu ...
Flutter SnackBarの右側にボタンを追加するサンプル
環境
Windows11 pro 64bit
Flutter 3.3.7
構文
action: SnackBarAction(xxx)
SnackBarの右側にボタンを追加するには、引数「a ...
Flutter SnackBarのテキストを中央に表示するサンプル
環境
Windows11 pro 64bit
Flutter 3.3.7
構文
textAlign: TextAlign.center
SnackBarのテキストを中央に表示するには、Tex ...
Flutter Textで表示しきれない文字の表示方法を設定するサンプル
環境
Windows11 pro 64bit
Flutter 3.3.7
構文
Textで表示しきれない文字の表示方法を設定するには、引数「overflow」を使います。
使用例
Flutter Textの取り消し線を波線にするサンプル
環境
Windows11 pro 64bit
Flutter 3.3.7
構文
decorationStyle: TextDecorationStyle.wavy,
Textの取り消し線を波 ...
Flutter FloatingActionButtonを横に複数並べるサンプル
環境
Windows11 pro 64bit
Flutter 3.3.7
構文
FloatingActionButtonを横に複数並べるには、Rowウェジェットを使います。
作成方法 ...
Flutter FloatingActionButtonの枠線の太さを変えるサンプル
環境
Windows11 pro 64bit
Flutter 3.3.7
構文
shape: CircleBorder(
side: BorderSide(xxx
FloatingA ...
Flutter TextFormFieldにプレースホルダーを表示するサンプル
環境
Windows11 pro 64bit
Flutter 3.3.7
構文
TextFormFieldにプレースホルダーを表示するには、引数「decoration」を使います。
使用 ...
Flutter TextFormFieldのフォーカスを外すサンプル
環境
Windows11 pro 64bit
Flutter 3.3.7
構文
TextFormFieldのフォーカスを外すには、FocusNodeを使います。
作成方法
1.F ...
Flutter TextFormFieldのエラーメッセージを削除する方法
環境
Windows11 pro 64bit
Flutter 3.3.7
構文
validator: (value) {
return ”;
},
TextFor ...
Flutter TextFormFieldのテキストを取得するサンプル
環境
Windows11 pro 64bit
Flutter 3.3.7
構文
TextFormFieldのテキストを取得するには、TextEditingControllerを使います。 ...
Flutter Textのテキストを右寄せにするサンプル
環境
Windows11 pro 64bit
Flutter 3.3.7
構文
textAlign: TextAlign.right,
Textのテキストを右寄せにするには、引数「textA ...
Flutter Textの下線を2重線にするサンプル
環境
Windows11 pro 64bit
Flutter 3.3.7
構文
decorationStyle: TextDecorationStyle.double,
Textの下線を2重 ...
Flutter DropdownButtonの背景色を変えるサンプル
環境
Windows11 pro 64bit
Flutter 3.3.7
構文
Container(
color:/*背景色*/,
child: DropdownButton( ...
Flutter アイコンボタンを無効にするかどうかを判断するサンプル
環境
Windows11 pro 64bit
Flutter 3.3.7
構文
onPressed: _isDisabled ? null : () {},
アイコンボタンを無効にするかどう ...
Flutter アイコンボタンを無効にするサンプル
環境
Windows11 pro 64bit
Flutter 3.3.7
構文
onPressed: null,
アイコンボタンを無効にするには、引数「onPressed」に「null」を指 ...
Flutter アイコンボタン(IconButton)を角丸にするサンプル
環境
Windows11 pro 64bit
Flutter 3.3.7
構文
borderRadius: BorderRadius.circular(xxx),
BoxDecoration ...
Flutter 横スクロールのListViewでCardを使うサンプル
環境
Windows11 pro 64bit
Flutter 3.3.7
構文
SizedBox(
width: 横幅,
child: Card(),//CardをSizedBoxの ...