Flutter SingleChildScrollview内でListViewを使うサンプル
環境
Windows11 pro 64bit
Flutter 3.3.7
構文
SingleChildScrollview内でListViewを使うには、まず引数「shrinkWrap」に「true ...
Flutter AlertDialogを円にするサンプル
環境
Windows11 pro 64bit
Flutter 3.3.7
構文
shape: CircleBorder(),
AlertDialogを円にするには、引数「shape」に「Ci ...
Flutter Cardに最小の横幅を設定するサンプル
環境
Windows11 pro 64bit
Flutter 3.3.7
構文
child: ConstrainedBox( constraints: BoxConstraints( minWidth ...Flutter GridViewの要素をタップできるようにするサンプル
環境
Windows11 pro 64bit
Flutter 3.3.7
構文
GestureDetector(
onTap: (){
//処理コード
},
Grid ...
Flutter DatePickerでTextFormFieldに入力する方法
環境
Windows11 pro 64bit
Flutter 3.3.7
構文
TextFormFieldに設定したTextEditinControllerのtextプロパティに、選択した日付を代入 ...
Flutter InputDecorationを使ってTextFormFieldのバリデーションエラーテキストの色を設定する
環境
Windows11 pro 64bit
Flutter 3.3.7
構文
decoration: InputDecoration( errorStyle: TextStyle( color: x ...Flutter TextFormFieldの下線の色を設定するサンプル
環境
Windows11 pro 64bit
Flutter 3.3.7
構文
1.通常時の下線の色を設定する
Flutter TextFormFieldのカーソルの色を設定するサンプル
環境
Windows11 pro 64bit
Flutter 3.3.7
構文
TextFormField( cursorColor:/*カーソルの色*/,),TextFormFieldのカーソ ...
Flutter maxLinesを使ってTextFormFieldの最大行数を設定する
環境
Windows11 pro 64bit
Flutter 3.3.7
構文
maxLines:/*最大行数*/,
TextFormFieldの最大行数を設定するには、引数「maxLine ...
Flutter TextEditingControllerを使ってTextFormFieldのテキストに値を追加する
環境
Windows11 pro 64bit
Flutter 3.3.7
構文
final _editController = TextEditingController();TextFormFiel ...Flutter Textで表示するテキストを太字にするサンプル
環境
Windows11 pro 64bit
Flutter 3.3.7
構文
fontWeight: FontWeight.bold,
Textのテキストを太字にするには、引数「style ...
Flutter Textの取り消し線の色を設定するサンプル
環境
Windows11 pro 64bit
Flutter 3.3.7
構文
style: TextStyle(
decoration: TextDecoration.lineThroug ...
Flutter Textの文字サイズを設定するサンプル
環境
Windows11 pro 64bit
Flutter 3.3.7
構文
style: TextStyle(
fontSize:/*サイズ*/,
),
TextStyl ...
Flutter Textのテキストを全て大文字にするサンプル
環境
Windows11 pro 64bit
Flutter 3.3.7
使用例
Text('study'.toUpperCase()),Textに指定している文字列の後に、toUpperCas ...
Flutter Text(テキスト)の高さを設定する方法
環境
Windows11 pro 64bit
Flutter 3.3.7
使用例
style: TextStyle( height:/*高さ*/, ),Textの引数「style」にTextSt ...
Flutter ListViewに区切り線を付けるサンプル
環境
Windows11 pro 64bit
Flutter 3.3.7
構文
Divider( height: xx, thickness: xx, color: Colors.red, )L ...
Flutter DataTableのパディングを削除するサンプル
環境
Windows11 pro 64bit
Flutter 3.3.7
構文
DataTable(
columnSpacing: 0,
horizontalMargin: 0, ...
Flutter ListViewで常にスクロールバーを表示するサンプル
環境
Windows11 pro 64bit
Flutter 3.3.7
構文
Scrollbar(
isAlwaysShown: true,
child: ListView(xxx ...