opt.: json input experience

This commit is contained in:
lollipopkit🏳️‍⚧️
2024-07-26 20:22:30 +08:00
parent 1c6ec56032
commit 6a0254623f
12 changed files with 110 additions and 80 deletions

View File

@@ -44,8 +44,9 @@ class _AndroidSettingsPageState extends State<AndroidSettingsPage> {
Widget _buildBgRun() {
return ListTile(
title: Text(l10n.bgRun),
subtitle: Text(l10n.bgRunTip, style: UIs.textGrey),
// title: Text(l10n.bgRun),
// subtitle: Text(l10n.bgRunTip, style: UIs.textGrey),
title: TipText(text: l10n.bgRun, tip: l10n.bgRunTip),
trailing: StoreSwitch(prop: Stores.setting.bgRun),
);
}