mirror of
https://github.com/lollipopkit/flutter_server_box.git
synced 2025-12-17 15:24:35 +01:00
15 lines
277 B
Dart
15 lines
277 B
Dart
import 'package:flutter/material.dart';
|
|
|
|
class AppProvider extends ChangeNotifier {
|
|
int? _newestBuild;
|
|
int? get newestBuild => _newestBuild;
|
|
set newestBuild(int? build) {
|
|
_newestBuild = build;
|
|
notifyListeners();
|
|
}
|
|
|
|
bool moveBg = true;
|
|
|
|
BuildContext? ctx;
|
|
}
|