Flutter TextFormFieldウェジェッに初期値を設定するサンプル
環境
Windows11 pro 64bit
Flutter 3.3.7
構文
TextFormFieldの引数「initialValue」を使ってウェジェッに初期値を設定します。
使用 ...
Flutter テキストの下線を破線にするサンプル
環境
Windows11 pro 64bit
Flutter 3.3.7
構文
decorationStyle: TextDecorationStyle.dashed,
Textの下線を破線 ...
Flutter decorationStyleでTextの下線を点線にするサンプル
環境
Windows11 pro 64bit
Flutter 3.3.7
構文
decorationStyle: TextDecorationStyle.dotted,
Textの下線を点線 ...
Flutter TextFormFieldのテキスト入力中の枠線の色を設定するサンプル
環境
Windows11 pro 64bit
Flutter 3.3.7
構文
focusedBorder: OutlineInputBorder( borderSide: BorderSide( c ...Flutter TextFormFieldの入力欄とエラーメッセージの間隔を変えるサンプル
環境
Windows11 pro 64bit
Flutter 3.3.7
構文
decoration: InputDecoration( errorStyle: TextStyle( height: ...Flutter Containerを使ってアイコンのの形を指定するサンプル
環境
Windows11 pro 64bit
Flutter 3.3.7
構文
Container(
decoration: BoxDecoration(//Containerの引数「dec ...
Flutter Icons.timerを使ってタイマーのアイコンを表示するサンプル
環境
Windows11 pro 64bit
Flutter 3.3.7
構文
child: Icon(Icons.timer)
タイマーのアイコンを表示するには、Icons.timerを使 ...
Flutter shapeを使ってListTileに枠線をつけるサンプル
環境
Windows11 pro 64bit
Flutter 3.3.7
構文
shape: RoundedRectangleBorder(
side: BorderSide(),
Flutter CircleAvatarを使ってListTileの左側に画像を表示するサンプル
環境
Windows11 pro 64bit
Flutter 3.3.7
構文
leading: CircleAvatar(
backgroundImage: AssetImage(xxx& ...
Flutter Imageウェジェットを使ってListTileの左側に画像を表示する
環境
Windows11 pro 64bit
Flutter 3.3.7
構文
ListTile(
leading: Image(),
title: Text(‘test ...
Flutter ListTileの上下のパディングを設定するサンプル
環境
Windows11 pro 64bit
Flutter 3.3.7
構文
minVerticalPadding: Double型の値
ListTileの引数「minVerticalPa ...
Flutter Wrapの要素を右寄せにするサンプル
環境
Windows11 pro 64bit
Flutter 3.3.7
構文
alignment: WrapAlignment.end
Wrapの引数「alignment」にWrapAli ...
Flutter AppBarにハンバーガーメニューを追加するサンプル
環境
Windows11 pro 64bit
Flutter 3.3.7
概要
AppBarにハンバーガーメニューを追加するには、Scaffoldの引数「drawer」に「Drawer」を指定します ...
Flutter DrawerHeaderの高さを設定するサンプル
環境
Windows11 pro 64bit
Flutter 3.3.7
構文
SizedBox(
height: 高さ,
child: DrawerHeader(),
Dr ...
Flutter DrawerHeaderを角丸にするサンプル
環境
Windows11 pro 64bit
Flutter 3.3.7
構文
borderRadius: BorderRadius.circular(xxx),
DrawerHeaderを ...
Flutter iconThemeを使ってアイコンの色を変えるサンプル
環境
Windows11 pro 64bit
Flutter 3.3.7
構文
appBar: AppBar(
iconTheme: IconThemeData(color: xxx), ...
Flutter 下矢印のアイコンを表示するサンプル
環境
Windows11 pro 64bit
Flutter 3.3.7
構文
Icon(Icons.arrow_downward)
下矢印のアイコンを表示するには、Icons.arrow_ ...
Flutter 星のアイコンを表示するサンプル
環境
Windows11 pro 64bit
Flutter 3.3.7
構文
child: Icon(Icons.star)
星のアイコンを表示するには、「Icons.star」を使います ...