mirror of
https://github.com/lollipopkit/flutter_server_box.git
synced 2025-12-17 07:14:28 +01:00
13 lines
255 B
Dart
13 lines
255 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;
|
|
}
|