@@ -26,7 +26,8 @@ class _AnnouncementListPageState extends ConsumerState<AnnouncementListPage> {
return Scaffold(
appBar: AppBar(title: const Text('公告通知')),
- body: Center(
+ body: Align(
+ alignment: Alignment.topCenter,
child: ConstrainedBox(
constraints: BoxConstraints(maxWidth: r.listMaxWidth),
child: itemsAsync.when(
@@ -113,7 +113,7 @@ class _ExpenseListPageState extends ConsumerState<ExpenseListPage> {
),
);
return Padding(
- padding: const EdgeInsets.only(bottom: 4),
+ padding: const EdgeInsets.only(top: 4, bottom: 4),
child: r.isWide
? Center(
child: SizedBox(width: r.listMaxWidth, child: filterBar))
@@ -111,7 +111,7 @@ class _ExpenseApplicationListPageState
@@ -34,7 +34,8 @@ class _OutingLogListPageState extends ConsumerState<OutingLogListPage> {
],
@@ -109,7 +109,7 @@ class _OvertimeListPageState extends ConsumerState<OvertimeListPage> {
@@ -98,7 +98,7 @@ class _VehicleListPageState extends ConsumerState<VehicleListPage> {
child: r.isWide ? Center(child: SizedBox(width: r.listMaxWidth, child: filterBar)) : filterBar,
}