update version

This commit is contained in:
Michael Speed 2021-05-17 17:51:24 +02:00
parent d1eecfff32
commit 74db0f171f
2 changed files with 4 additions and 2 deletions

View File

@ -487,13 +487,15 @@ class _PlayerWidgetState extends State<PlayerWidget> {
}
void _onBgMusicPressed() {
_bloc.fetchBackgroundSounds();
showModalBottomSheet(
context: context,
isScrollControlled: true,
builder: (context) => ChooseBackgroundSoundDialog(
stream: _bloc.bgSoundsListController.stream),
);
// slight delay incase the cache returns before the sheet opens
Future.delayed(Duration(milliseconds: 50))
.then((value) => _bloc.fetchBackgroundSounds());
}
}

View File

@ -11,7 +11,7 @@ description: A meditation learning tool
# In iOS, build-name is used as CFBundleShortVersionString while build-number used as CFBundleVersion.
# Read more about iOS versioning at
# https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html
version: 2.0.10+20010
version: 2.0.11+20011
environment:
sdk: ">=2.6.0 <3.0.0"