asset image getter fix

This commit is contained in:
julian 2023-02-10 15:27:45 -06:00
parent 3003c44005
commit e857e28099
2 changed files with 2 additions and 2 deletions

View file

@ -54,7 +54,7 @@ class _IntroViewState extends State<IntroView> {
),
child: Image(
image: AssetImage(
Assets.png.stack,
Assets.png.stack(context),
),
),
),

View file

@ -31,7 +31,7 @@ class EmptyWallets extends StatelessWidget {
),
Image(
image: AssetImage(
Assets.png.stack,
Assets.png.stack(context),
),
width: isDesktop ? 324 : MediaQuery.of(context).size.width / 3,
),