mirror of
https://gitlab.com/comunic/comunicmobile
synced 2025-06-19 08:15:16 +00:00
Start update
This commit is contained in:
@ -28,7 +28,7 @@ class MultiChoicesSettingsTile<T> extends SettingsTile {
|
||||
return SettingsTile(
|
||||
title: title,
|
||||
subtitle: choices.firstWhere((f) => f.id == currentValue).title,
|
||||
onTap: () => _changeValue(context),
|
||||
onPressed: (_) => _changeValue(context),
|
||||
);
|
||||
}
|
||||
|
||||
|
@ -40,7 +40,7 @@ class TextEditSettingsTile extends SettingsTile {
|
||||
return SettingsTile(
|
||||
title: title,
|
||||
subtitle: currValue,
|
||||
onTap: readOnly ? null : () => _changeValue(context),
|
||||
onPressed: (_)=>readOnly ? null : () => _changeValue(context),
|
||||
);
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user