Skip to content

Commit

Permalink
feat(app): prettier page indicator
Browse files Browse the repository at this point in the history
  • Loading branch information
tamslo committed Nov 28, 2024
1 parent 13d7021 commit 4f28ef0
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion app/lib/common/widgets/page_indicator_explanation.dart
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,12 @@ class PageIndicatorExplanation extends StatelessWidget {
Widget build(BuildContext context) {
return Padding(
padding: EdgeInsets.all(PharMeTheme.smallSpace),
child: Text(text),
child: Text(
text,
style: PharMeTheme.textTheme.labelMedium!.copyWith(
fontStyle: FontStyle.italic,
),
),
);
}
}

0 comments on commit 4f28ef0

Please sign in to comment.