Skip to content

Commit

Permalink
feat: Centering text in pages. #4
Browse files Browse the repository at this point in the history
  • Loading branch information
LuchoTurtle committed May 10, 2023
1 parent c60546c commit a3df0fa
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions lib/pages.dart
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ class TourPage extends StatelessWidget {
Text(
AppLocalization.of(context).getTranslatedValue("feature_page.title").toString(),
style: const TextStyle(fontSize: 30),
textAlign: TextAlign.center,
),
Padding(
padding: const EdgeInsets.all(16),
Expand Down Expand Up @@ -55,6 +56,7 @@ class SettingsPage extends StatelessWidget {
Text(
AppLocalization.of(context).getTranslatedValue("settings_page.title").toString(),
style: const TextStyle(fontSize: 30),
textAlign: TextAlign.center,
),
Padding(
padding: const EdgeInsets.all(16),
Expand Down

0 comments on commit a3df0fa

Please sign in to comment.