Flutter Columnのサイズを画面サイズの比率で指定するサンプル
環境
Windows11 pro 64bit
Flutter 3.3.7
書式
SizedBox(
height: MediaQuery.of(context).size.height * ...
Flutter Columnの要素を左寄せにするサンプル
環境
Windows11 pro 64bit
Flutter 3.3.7
構文
Column(
crossAxisAlignment: CrossAxisAlignment.start, ...
Flutter BottomSheetの高さを設定するサンプル
環境
Windows11 pro 64bit
Flutter 3.3.7
構文
builder: (BuildContext context) {
return Container( ...
Flutter リストビューでフッターを固定表示するサンプル
環境
Windows11 pro 64bit
Flutter 3.3.7
構文
children: , ), ),],Columnの「children」に「Expanded」を指定し、Expan ...
Flutter Container内の位置を中央寄せにするサンプル
環境
Windows11 pro 64bit
Flutter 3.3.7
構文
Container(
alignment: Alignment.center,
),
Cont ...
Flutter Container内の位置を下寄せにするサンプル
環境
Windows11 pro 64bit
Flutter 3.3.7
構文
Container(
alignment: Alignment.bottomCenter,
), ...
Flutter Containerの上に影を表示するサンプル
環境
Windows11 pro 64bit
Flutter 3.3.7
構文
Container( decoration: BoxDecoration( boxShadow: , ),),Bo ...
Flutter AppBarにサイドメニューを追加するサンプル
環境
Windows11 pro 64bit
Flutter 3.3.7
概要
AppBarにサイドメニューを追加するには、Drawerを使います。
Flutter DrawerHeaderの背景画像を設定するサンプル
環境
Windows11 pro 64bit
Flutter 3.3.7
概要
DrawerHeader(
decoration: BoxDecoration(
image: Dec ...
Flutter Builderを使ってAppBarのアイコンからDrawerを開く方法
環境
Windows11 pro 64bit
Flutter 3.3.7
構文
builder: (context) => IconButton(
icon: Icon(Icons.s ...
Flutter ScaffoldKeyのopenDrawerメソッドを使ってDrawerを開く方法
環境
Windows11 pro 64bit
Flutter 3.3.7
構文
final GlobalKey<ScaffoldState> _scaffoldKey = GlobalK ...
Flutter Drawerをタップで閉じるサンプル
環境
Windows11 pro 64bit
Flutter 3.3.7
概要
Drawerをタップで閉じるには、Navigator.pop(context)を使います。
構文
Flutter AlertDialogのボタンを中央に寄せるサンプル
環境
Windows11 pro 64bit
Flutter 3.3.7
構文
AlertDialogのボタンを中央に寄せるには、「actions」を使わず、
「Rowウェジェット」を使いま ...
Flutter スライダーを表示するサンプルコード
環境
Windows11 pro 64bit
Flutter 3.3.7
操作方法
Cupertinoをインポートします。
import ‘package:flutter/cup ...
Flutter AppBarの形状を変えるサンプル
環境
Windows11 pro 64bit
Flutter 3.3.7
構文
shape: RoundedRectangleBorder(borderRadius: BorderRadius.ci ...
Flutter キーボードの高さを取得するサンプル
環境
Windows11 pro 64bit
Flutter 3.3.7
構文
MediaQuery.of(context).viewInsets.bottom;
「MediaQuery.o ...
Flutter TextFormFieldのパディングを設定するサンプル
環境
Windows11 pro 64bit
Flutter 3.3.7
構文
decoration: InputDecoration( contentPadding:/*EdgeInsetsでパディ ...Flutter Containerの枠線の左側の丸みを設定するサンプル
環境
Windows11 pro 64bit
Flutter 3.3.7
構文
decoration: BoxDecoration( borderRadius: BorderRadius.horizo ...