|
|
@ -43,7 +43,6 @@ class DiamondScreen extends StatelessWidget { |
|
|
), |
|
|
), |
|
|
MyImage( |
|
|
MyImage( |
|
|
image: MyAssets.diamondBig, |
|
|
image: MyAssets.diamondBig, |
|
|
size: setSize(context: context, tablet: 300), |
|
|
|
|
|
), |
|
|
), |
|
|
Positioned( |
|
|
Positioned( |
|
|
bottom: setSize( |
|
|
bottom: setSize( |
|
|
@ -162,13 +161,13 @@ class DiamondScreen extends StatelessWidget { |
|
|
children: [ |
|
|
children: [ |
|
|
Expanded( |
|
|
Expanded( |
|
|
child: MyWhiteButton( |
|
|
child: MyWhiteButton( |
|
|
onTap: () => context.read<QuestionBloc>().getNextLevelEvent(), |
|
|
|
|
|
|
|
|
onTap: () => context.read<QuestionBloc>().goToLevelPage(context: context), |
|
|
title: context.translate.map, |
|
|
title: context.translate.map, |
|
|
), |
|
|
), |
|
|
), |
|
|
), |
|
|
Expanded( |
|
|
Expanded( |
|
|
child: MyYellowButton( |
|
|
child: MyYellowButton( |
|
|
onTap: () => context.read<QuestionBloc>().getNextLevelEvent(), |
|
|
|
|
|
|
|
|
onTap: () => context.read<QuestionBloc>().getNextLevelEvent(context: context), |
|
|
title: context.translate.next, |
|
|
title: context.translate.next, |
|
|
), |
|
|
), |
|
|
), |
|
|
), |
|
|
|