|
|
|
@ -55,6 +55,7 @@ class HomePage extends StatelessWidget { |
|
|
|
onTap: () => context.read<HomeBloc>().changeMute(), |
|
|
|
child: MyImage( |
|
|
|
image: snapshot.data == 0 ? MyAssets.musicOff : MyAssets.musicOn, |
|
|
|
size: setSize(context: context, tablet: 100), |
|
|
|
), |
|
|
|
), |
|
|
|
), |
|
|
|
@ -99,6 +100,7 @@ class HomePage extends StatelessWidget { |
|
|
|
onTap: () => context.read<HomeBloc>().goToLanguagePage(context), |
|
|
|
child: MyImage( |
|
|
|
image: MyAssets.language, |
|
|
|
size: setSize(context: context, tablet: 100), |
|
|
|
), |
|
|
|
), |
|
|
|
MyYellowButton( |
|
|
|
@ -109,6 +111,7 @@ class HomePage extends StatelessWidget { |
|
|
|
onTap: () => context.read<HomeBloc>().showAboutUs(context), |
|
|
|
child: MyImage( |
|
|
|
image: MyAssets.theme, |
|
|
|
size: setSize(context: context, tablet: 100), |
|
|
|
), |
|
|
|
), |
|
|
|
], |
|
|
|
|