Flutter

環境
Windows11 pro 64bit
Flutter 3.3.7

構文
shape: CircleBorder(),
AlertDialogを円にするには、引数「shape」に「Ci ...

Flutter

環境
Windows11 pro 64bit
Flutter 3.3.7

構文

child: ConstrainedBox( constraints: BoxConstraints( minWidth ...

Flutter

環境
Windows11 pro 64bit
Flutter 3.3.7

構文
GestureDetector(
onTap: (){
//処理コード
},
Grid ...

Flutter

環境
Windows11 pro 64bit
Flutter 3.3.7

構文
TextFormFieldに設定したTextEditinControllerのtextプロパティに、選択した日付を代入 ...

Flutter

環境
Windows11 pro 64bit
Flutter 3.3.7

構文

decoration: InputDecoration( errorStyle: TextStyle( color: x ...

Flutter

環境
Windows11 pro 64bit
Flutter 3.3.7

構文
1.通常時の下線の色を設定する

enabledBorder: UnderlineInputBorder( bor ...

Flutter

環境
Windows11 pro 64bit
Flutter 3.3.7

構文

TextFormField( cursorColor:/*カーソルの色*/,),

TextFormFieldのカーソ ...

Flutter

環境
Windows11 pro 64bit
Flutter 3.3.7

構文
maxLines:/*最大行数*/,
TextFormFieldの最大行数を設定するには、引数「maxLine ...

Flutter

環境
Windows11 pro 64bit
Flutter 3.3.7

構文

final _editController = TextEditingController();TextFormFiel ...

Flutter

環境
Windows11 pro 64bit
Flutter 3.3.7

構文
fontWeight: FontWeight.bold,
Textのテキストを太字にするには、引数「style ...

Dart

環境
Windows 11 pro 64bit
Dart 2.18.4

構文
await Future.delayed(Duration(xxx));
Future.delayed関数をaw ...

Flutter

環境
Windows11 pro 64bit
Flutter 3.3.7

構文
style: TextStyle(
decoration: TextDecoration.lineThroug ...

Flutter

環境
Windows11 pro 64bit
Flutter 3.3.7

構文
style: TextStyle(
fontSize:/*サイズ*/,
),
TextStyl ...

iPhone

環境
iOS 16.6.1

操作方法
1.ホームボタンがある iPhone の場合、ホーム画面を下から上にスワイプします。
ホームボタンがないiPhoneの場合、ホーム画面の右上から下にスワイプしま ...

Flutter

環境
Windows11 pro 64bit
Flutter 3.3.7

使用例

Text('study'.toUpperCase()),

Textに指定している文字列の後に、toUpperCas ...

Flutter

環境
Windows11 pro 64bit
Flutter 3.3.7

使用例

style: TextStyle( height:/*高さ*/, ),

Textの引数「style」にTextSt ...

iPhone

環境
iOS 16.6.1

操作方法
1.ホーム画面から「カメラ」アプリを起動します。

2.撮影モードを「写真」にします。

3.画面上部の真ん中にある「∧」をタップし

4 ...

Dart

環境
Windows 11 pro 64bit
Dart 2.18.4

構文
sleep(Duration(xxx))
sleepメソッドは、指定した時間を処理を遅延させます。
引数 ...