fix: import backup

This commit is contained in:
lollipopkit
2023-08-01 13:41:00 +08:00
parent 0f83d10bfa
commit 33932f7428
9 changed files with 26 additions and 34 deletions

View File

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