This commit is contained in:
lollipopkit
2023-09-11 23:23:46 +08:00
parent 932a9ef3ff
commit 730a62831b
6 changed files with 47 additions and 18 deletions

View File

@@ -3,11 +3,10 @@ import 'package:flutter/material.dart';
class AppProvider extends ChangeNotifier {
int? _newestBuild;
int? get newestBuild => _newestBuild;
bool moveBg = true;
void setNewestBuild(int build) {
set newestBuild(int? build) {
_newestBuild = build;
notifyListeners();
}
bool moveBg = true;
}