Skip to content

Commit

Permalink
PushableListViewの画面ちらつきを防止
Browse files Browse the repository at this point in the history
  • Loading branch information
shiosyakeyakini-info committed Nov 10, 2024
1 parent 00541cb commit 2773561
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion lib/view/common/pushable_listview.dart
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,10 @@ class PushableListView<T> extends HookConsumerWidget {
return const Center(
child: Padding(
padding: EdgeInsets.all(20),
child: CircularProgressIndicator.adaptive(),
child: SizedBox.square(
dimension: 100,
child: CircularProgressIndicator.adaptive(),
),
),
);
}
Expand Down

0 comments on commit 2773561

Please sign in to comment.