fix: Android moveBg during picking file

This commit is contained in:
lollipopkit
2023-04-05 15:15:17 +08:00
parent fe7ea04011
commit 5c2cc5e5e4
5 changed files with 26 additions and 11 deletions

View File

@@ -4,8 +4,15 @@ class AppProvider extends BusyProvider {
int? _newestBuild;
int? get newestBuild => _newestBuild;
bool _moveBg = true;
bool get moveBg => _moveBg;
void setNewestBuild(int build) {
_newestBuild = build;
notifyListeners();
}
void setMoveBg(bool moveBg) {
_moveBg = moveBg;
}
}