This repository has been archived on 2024-04-18. You can view files and clone it, but cannot push or open issues or pull requests.
app/lib/state/timeStatusState.dart

11 lines
200 B
Dart

import 'package:flutter/material.dart';
class TimeWarningState extends ChangeNotifier {
bool _show = true;
bool get show => _show;
void hide() {
_show = false;
notifyListeners();
}
}