Skip to content

Commit

Permalink
fix: pay screen background blink (#1268)
Browse files Browse the repository at this point in the history
  • Loading branch information
justinenerio authored Feb 12, 2024
1 parent 529f4ac commit 86a962e
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 2 deletions.
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,8 @@ class _AuthenticatedFlowScreenState extends State<AuthenticatedFlowScreen> {
void didChangeDependencies() {
precacheImage(Assets.images.cashInBg.provider(), context);
precacheImage(Assets.images.cashOutBg.provider(), context);
precacheImage(Assets.images.sendMoneyBg.provider(), context);
precacheImage(Assets.images.sendManualBg.provider(), context);
precacheImage(Assets.images.sendMoneyGraphic.provider(), context);
precacheImage(Assets.images.quizIntroBg.provider(), context);
precacheImage(Assets.images.quizQuestionBg.provider(), context);

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ class PayFlowScreen extends StatelessWidget {
Widget build(BuildContext context) => PayPage(
title: context.l10n.walletTransactionMethodTitle,
headerIcon: Assets.images.sendMoneyGraphic,
headerBackground: Assets.images.sendMoneyBg,
headerBackground: Assets.images.cashInBg,
headerContent: Column(
mainAxisSize: MainAxisSize.min,
crossAxisAlignment: CrossAxisAlignment.center,
Expand Down

0 comments on commit 86a962e

Please sign in to comment.