mirror of
https://github.com/Yubico/yubioath-flutter.git
synced 2024-11-22 16:32:01 +03:00
54 lines
1.5 KiB
Dart
54 lines
1.5 KiB
Dart
import 'package:flutter/material.dart';
|
|
import 'package:flutter_riverpod/flutter_riverpod.dart';
|
|
import 'package:logging/logging.dart';
|
|
import 'package:yubico_authenticator/app/logging.dart';
|
|
|
|
import '../app/models.dart';
|
|
|
|
final _log = Logger('android.window_state_provider');
|
|
|
|
final _windowStateProvider =
|
|
StateNotifierProvider<_WindowStateNotifier, WindowState>(
|
|
(ref) => _WindowStateNotifier());
|
|
|
|
final androidWindowStateProvider = Provider<WindowState>(
|
|
(ref) => ref.watch(_windowStateProvider),
|
|
);
|
|
|
|
class _WindowStateNotifier extends StateNotifier<WindowState>
|
|
with WidgetsBindingObserver {
|
|
_WindowStateNotifier()
|
|
: super(WindowState(focused: true, visible: true, active: true)) {
|
|
_init();
|
|
}
|
|
|
|
@override
|
|
void didChangeAppLifecycleState(AppLifecycleState lifeCycleState) {
|
|
_log.debug(
|
|
'appLifecycleStateChange triggered with: ${lifeCycleState.name}');
|
|
|
|
var requestedState = lifeCycleState == AppLifecycleState.resumed;
|
|
var currentState = state.focused;
|
|
|
|
if (requestedState != currentState) {
|
|
state = WindowState(
|
|
focused: requestedState,
|
|
visible: requestedState,
|
|
active: requestedState);
|
|
_log.debug('Updated windowState to $state');
|
|
} else {
|
|
_log.debug('Ignoring appLifecycleStateChange');
|
|
}
|
|
}
|
|
|
|
void _init() {
|
|
WidgetsBinding.instance.addObserver(this);
|
|
}
|
|
|
|
@override
|
|
void dispose() {
|
|
WidgetsBinding.instance.removeObserver(this);
|
|
super.dispose();
|
|
}
|
|
}
|