Skip to content

Commit

Permalink
fix(legal_modal): make AlertDialog scrollable
Browse files Browse the repository at this point in the history
  • Loading branch information
tsutsu3 committed Jan 31, 2025
1 parent 4a79ce6 commit f7ef3a3
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions lib/screens/settings/about/legal_modal.dart
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ class LegalModal extends StatelessWidget {
} else if (snapshot.hasData) {
final noticeText = snapshot.data!;
return AlertDialog(
scrollable: true,
title: Column(
children: [
Icon(
Expand Down Expand Up @@ -58,6 +59,7 @@ class LegalModal extends StatelessWidget {

// Error handling
return AlertDialog(
scrollable: true,
title: Column(
children: [
Icon(
Expand Down

0 comments on commit f7ef3a3

Please sign in to comment.