Skip to content

Commit

Permalink
chore: tweak setting description
Browse files Browse the repository at this point in the history
  • Loading branch information
kevmo314 authored Sep 4, 2021
1 parent 191752c commit ef96be4
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions lib/screens/settings/audio_sources.dart
Original file line number Diff line number Diff line change
Expand Up @@ -57,12 +57,10 @@ class _AudioSourcesScreenState extends State<AudioSourcesScreen> {
body: Consumer<AudioModel>(builder: (context, model, child) {
return Column(crossAxisAlignment: CrossAxisAlignment.start, children: [
SwitchListTile.adaptive(
title: const Text('Play off-stream (uses more battery)'),
title: const Text('Enable off-stream (uses more battery)'),
subtitle: model.isAlwaysEnabled
? const Text(
'Audio sources will play when your stream is offline')
: const Text(
'Audio sources will play only when your stream is online'),
? const Text('Audio will also play when you\'re offline')
: const Text('Audio will only play when you\'re online'),
value: model.isAlwaysEnabled,
onChanged: (value) {
model.isAlwaysEnabled = value;
Expand Down

0 comments on commit ef96be4

Please sign in to comment.