Merge branch 'develop' of github.com:FRE-Informatica/flutter-freaccesss-hub into develop
This commit is contained in:
commit
edd776a5ec
|
@ -76,11 +76,14 @@ class LocalizationService {
|
||||||
return await _handleUnavailable(context, locals);
|
return await _handleUnavailable(context, locals);
|
||||||
} else if (isEnabled) {
|
} else if (isEnabled) {
|
||||||
return await _handleEnabled(context, locals[0]);
|
return await _handleEnabled(context, locals[0]);
|
||||||
} else if (isUnselected || isAvailable) {
|
} else if (isUnselected) {
|
||||||
|
log('() => isUnselected');
|
||||||
return await selectLocal(context);
|
return await selectLocal(context);
|
||||||
} else if (isSelected) {
|
} else if (isSelected) {
|
||||||
|
log('() => isSelected');
|
||||||
return await processData(context);
|
return await processData(context);
|
||||||
} else if (isAvailable) {
|
} else if (isAvailable) {
|
||||||
|
log('() => isAvailable');
|
||||||
await StorageUtil().ensureInitialization();
|
await StorageUtil().ensureInitialization();
|
||||||
return await processData(context);
|
return await processData(context);
|
||||||
} else {
|
} else {
|
||||||
|
|
Loading…
Reference in New Issue