Flutter

環境
Windows11 pro 64bit
Flutter 3.3.7

構文
cursorWidth: カーソルの太さ
TextFormFieldのカーソルの太さを設定するには、引数「cu ...

Flutter

環境
Windows11 pro 64bit
Flutter 3.3.7

構文
action: SnackBarAction(xxx)
SnackBarの右側にボタンを追加するには、引数「a ...

Flutter

環境
Windows11 pro 64bit
Flutter 3.3.7

構文
textAlign: TextAlign.center
SnackBarのテキストを中央に表示するには、Tex ...

Flutter

環境
Windows11 pro 64bit
Flutter 3.3.7

構文
Textで表示しきれない文字の表示方法を設定するには、引数「overflow」を使います。

使用例

Flutter

環境
Windows11 pro 64bit
Flutter 3.3.7

構文
decorationStyle: TextDecorationStyle.wavy,
Textの取り消し線を波 ...

Flutter

環境
Windows11 pro 64bit
Flutter 3.3.7

構文
FloatingActionButtonを横に複数並べるには、Rowウェジェットを使います。

作成方法 ...

Flutter

環境
Windows11 pro 64bit
Flutter 3.3.7

構文
shape: CircleBorder(
side: BorderSide(xxx
FloatingA ...

Flutter

環境
Windows11 pro 64bit
Flutter 3.3.7

構文
TextFormFieldにプレースホルダーを表示するには、引数「decoration」を使います。

使用 ...

Flutter

環境
Windows11 pro 64bit
Flutter 3.3.7

構文
TextFormFieldのフォーカスを外すには、FocusNodeを使います。

作成方法
1.F ...

Flutter

環境
Windows11 pro 64bit
Flutter 3.3.7

構文
validator: (value) {
return ”;
},
TextFor ...

Flutter

環境
Windows11 pro 64bit
Flutter 3.3.7

構文
TextFormFieldのテキストを取得するには、TextEditingControllerを使います。 ...

Flutter

環境
Windows11 pro 64bit
Flutter 3.3.7

構文
textAlign: TextAlign.right,
Textのテキストを右寄せにするには、引数「textA ...

Flutter

環境
Windows11 pro 64bit
Flutter 3.3.7

構文
decorationStyle: TextDecorationStyle.double,
Textの下線を2重 ...

Flutter

環境
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

環境
Windows11 pro 64bit
Flutter 3.3.7

構文
borderRadius: BorderRadius.circular(xxx),
BoxDecoration ...

Flutter

環境
Windows11 pro 64bit
Flutter 3.3.7

構文
SizedBox(
width: 横幅,
child: Card(),//CardをSizedBoxの ...