fix: version display (#458)

Fixes #457
This commit is contained in:
lollipopkit🏳️‍⚧️
2024-07-10 15:12:05 +08:00
committed by GitHub
parent 14771ae946
commit f7d6c461dc
5 changed files with 12 additions and 16 deletions

View File

@@ -3,13 +3,6 @@ import 'package:fl_lib/fl_lib.dart';
import 'package:flutter/material.dart';
class AppProvider extends ChangeNotifier {
int? _newestBuild;
int? get newestBuild => _newestBuild;
set newestBuild(int? build) {
_newestBuild = build;
notifyListeners();
}
BuildContext? ctx;
bool isWearOS = false;