some fixes
This commit is contained in:
parent
28fc05abab
commit
d0c6a92281
3 changed files with 6 additions and 4 deletions
|
|
@ -41,7 +41,7 @@ class PUserAgeView extends StatelessWidget {
|
|||
ListTile(
|
||||
title: Text(
|
||||
L10n.of(context)!.certifyAge(13),
|
||||
style: const TextStyle(color: Colors.white),
|
||||
style: const TextStyle(color: Colors.white, fontSize: 14),
|
||||
),
|
||||
leading: Radio<int>(
|
||||
value: 13,
|
||||
|
|
@ -52,7 +52,7 @@ class PUserAgeView extends StatelessWidget {
|
|||
ListTile(
|
||||
title: Text(
|
||||
L10n.of(context)!.certifyAge(18),
|
||||
style: const TextStyle(color: Colors.white),
|
||||
style: const TextStyle(color: Colors.white, fontSize: 14),
|
||||
),
|
||||
leading: Radio<int>(
|
||||
value: 18,
|
||||
|
|
|
|||
|
|
@ -50,7 +50,7 @@ class InstructionsController {
|
|||
|
||||
final bool userLangsSet =
|
||||
await _pangeaController.userController.areUserLanguagesSet;
|
||||
if (!userLangsSet && key == InstructionsEnum.blurMeansTranslate) {
|
||||
if (!userLangsSet) {
|
||||
return;
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -276,7 +276,9 @@ class MessageToolbarState extends State<MessageToolbar> {
|
|||
updateMode(mode);
|
||||
});
|
||||
|
||||
updateMode(MessageMode.play);
|
||||
WidgetsBinding.instance.addPostFrameCallback((timeStamp) {
|
||||
updateMode(MessageMode.play);
|
||||
});
|
||||
|
||||
Timer? timer;
|
||||
selectionStream =
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue