Flutter

環境
Windows11 pro 64bit
Flutter 3.3.7

構文
TextFormFieldの引数「initialValue」を使ってウェジェッに初期値を設定します。

使用 ...

Flutter

環境
Windows11 pro 64bit
Flutter 3.3.7

構文
decorationStyle: TextDecorationStyle.dashed,
Textの下線を破線 ...

Flutter

環境
Windows11 pro 64bit
Flutter 3.3.7

構文
decorationStyle: TextDecorationStyle.dotted,
Textの下線を点線 ...

Flutter

環境
Windows11 pro 64bit
Flutter 3.3.7

構文

focusedBorder: OutlineInputBorder( borderSide: BorderSide( c ...

Flutter

環境
Windows11 pro 64bit
Flutter 3.3.7

構文

decoration: InputDecoration( errorStyle: TextStyle( height: ...

Flutter

環境
Windows11 pro 64bit
Flutter 3.3.7

構文
Container(
decoration: BoxDecoration(//Containerの引数「dec ...

Flutter

環境
Windows11 pro 64bit
Flutter 3.3.7

構文
child: Icon(Icons.timer)
タイマーのアイコンを表示するには、Icons.timerを使 ...

Flutter

環境
Windows11 pro 64bit
Flutter 3.3.7

構文
shape: RoundedRectangleBorder(
side: BorderSide(),

Flutter

環境
Windows11 pro 64bit
Flutter 3.3.7

構文
leading: CircleAvatar(
backgroundImage: AssetImage(xxx& ...

Flutter

環境
Windows11 pro 64bit
Flutter 3.3.7

構文
ListTile(
leading: Image(),
title: Text(‘test ...

Flutter

環境
Windows11 pro 64bit
Flutter 3.3.7

構文
minVerticalPadding: Double型の値
ListTileの引数「minVerticalPa ...

Flutter

環境
Windows11 pro 64bit
Flutter 3.3.7

構文
alignment: WrapAlignment.end
Wrapの引数「alignment」にWrapAli ...

Flutter

環境
Windows11 pro 64bit
Flutter 3.3.7

概要
AppBarにハンバーガーメニューを追加するには、Scaffoldの引数「drawer」に「Drawer」を指定します ...

Flutter

環境
Windows11 pro 64bit
Flutter 3.3.7

構文
SizedBox(
height: 高さ,
child: DrawerHeader(),
Dr ...

Flutter

環境
Windows11 pro 64bit
Flutter 3.3.7

構文
borderRadius: BorderRadius.circular(xxx),
DrawerHeaderを ...

Flutter

環境
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」を使います ...