flutter: Only popup privacy policy dialog when language is Chinese
Fix #218
This commit is contained in:
parent
3d8a4ac564
commit
ed8997bb84
|
@ -97,7 +97,8 @@ class _GamePageState extends State<GamePage>
|
||||||
isReady = true;
|
isReady = true;
|
||||||
timer.cancel();
|
timer.cancel();
|
||||||
|
|
||||||
if (!Config.isPrivacyPolicyAccepted) {
|
if (Localizations.localeOf(context).languageCode == "zh" &&
|
||||||
|
!Config.isPrivacyPolicyAccepted) {
|
||||||
onShowPrivacyDialog();
|
onShowPrivacyDialog();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue