Skip to content

Commit

Permalink
upadte page heading to match payment details
Browse files Browse the repository at this point in the history
  • Loading branch information
kirahsapong committed Feb 15, 2024
1 parent e6601a4 commit acbb70f
Showing 1 changed file with 16 additions and 7 deletions.
23 changes: 16 additions & 7 deletions lib/features/payments/review_request_page.dart
Original file line number Diff line number Diff line change
Expand Up @@ -77,15 +77,24 @@ class ReviewRequestPage extends HookWidget {
))));
}

Widget _buildHeader(BuildContext context) =>
Column(crossAxisAlignment: CrossAxisAlignment.start, children: [
Text(
Loc.of(context).reviewYourRequest,
style: Theme.of(context).textTheme.titleLarge,
Widget _buildHeader(BuildContext context) => Column(children: [
Align(
alignment: Alignment.topLeft,
child: Text(
Loc.of(context).reviewYourRequest,
style: Theme.of(context).textTheme.headlineSmall?.copyWith(
fontWeight: FontWeight.bold,
),
),
),
const SizedBox(height: Grid.xs),
Text(Loc.of(context).makeSureInfoIsCorrect,
style: Theme.of(context).textTheme.bodyLarge),
Align(
alignment: Alignment.topLeft,
child: Text(
Loc.of(context).makeSureInfoIsCorrect,
style: Theme.of(context).textTheme.bodyMedium,
),
),
]);

Widget _buildAmounts(BuildContext context) =>
Expand Down

0 comments on commit acbb70f

Please sign in to comment.