From 2773561daa868128b6a50b760e6b8a14a506e74f Mon Sep 17 00:00:00 2001 From: sorairo Date: Sun, 10 Nov 2024 19:28:03 +0900 Subject: [PATCH] =?UTF-8?q?PushableListView=E3=81=AE=E7=94=BB=E9=9D=A2?= =?UTF-8?q?=E3=81=A1=E3=82=89=E3=81=A4=E3=81=8D=E3=82=92=E9=98=B2=E6=AD=A2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- lib/view/common/pushable_listview.dart | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/lib/view/common/pushable_listview.dart b/lib/view/common/pushable_listview.dart index e4c04a71d..4c48f9986 100644 --- a/lib/view/common/pushable_listview.dart +++ b/lib/view/common/pushable_listview.dart @@ -107,7 +107,10 @@ class PushableListView extends HookConsumerWidget { return const Center( child: Padding( padding: EdgeInsets.all(20), - child: CircularProgressIndicator.adaptive(), + child: SizedBox.square( + dimension: 100, + child: CircularProgressIndicator.adaptive(), + ), ), ); }