mirror of
https://github.com/lollipopkit/flutter_server_box.git
synced 2025-12-17 07:14:28 +01:00
14 lines
259 B
Dart
14 lines
259 B
Dart
import 'package:flutter/material.dart';
|
|
|
|
class AppProvider extends ChangeNotifier {
|
|
int? _newestBuild;
|
|
int? get newestBuild => _newestBuild;
|
|
|
|
bool moveBg = true;
|
|
|
|
void setNewestBuild(int build) {
|
|
_newestBuild = build;
|
|
notifyListeners();
|
|
}
|
|
}
|