Remove pool element from TajMahal Hero

This commit is contained in:
Shawn 2022-09-07 18:48:04 -06:00
parent cdcc9284d5
commit 269f4062e8

View File

@ -56,17 +56,20 @@ class TajMahalIllustration extends StatelessWidget {
alignment: Alignment(0, config.shortMode ? 1 : -.15), alignment: Alignment(0, config.shortMode ? 1 : -.15),
child: FractionallySizedBox( child: FractionallySizedBox(
widthFactor: config.shortMode ? 1 : 1.7, widthFactor: config.shortMode ? 1 : 1.7,
child: WonderHero(config, 'taj-mg', child: Stack(
child: Stack( children: [
children: [ WonderHero(
Image.asset('$assetPath/taj-mahal.png', opacity: anim, fit: BoxFit.cover), config,
if (!config.shortMode) 'taj-mg',
FractionalTranslation( child: Image.asset('$assetPath/taj-mahal.png', opacity: anim, fit: BoxFit.cover),
translation: Offset(0, 1.33), ),
child: Image.asset('$assetPath/pool.png', opacity: anim, fit: BoxFit.cover), if (!config.shortMode)
), FractionalTranslation(
], translation: Offset(0, 1.33),
)), child: Image.asset('$assetPath/pool.png', opacity: anim, fit: BoxFit.cover),
),
],
),
), ),
), ),
) )