Open5
Flutter Tips For Me
ListTile のtrailingに文字とアイコンを配置する
trailingにRow使ってTextとIconを設定する
この時、mainAxisSize: MainAxisSize.min,
を設定しないとエラーになったので注意
ドラッグでListの項目を並び替えたい時
ReorderableListViewを使う
https://api.flutter.dev/flutter/material/ReorderableListView-class.html
スライドさせて共有ボタンや削除ボタンを出したい時
flutter_slidableを使う
単純にスワイプで削除ならDismissibleでも可
https://pub.dev/packages/flutter_slidable
Containerに設定するpaddingとmarginの違い
どちらも余白を設定する
違いは内側か外側か
padding → EdgeInsetsGeometry
Empty space to inscribe inside the decoration. The child, if any, is placed inside this padding. [...]
内側の余白
margin → EdgeInsetsGeometry
Empty space to surround the decoration and child.
外側の余白