34 lines
877 B
Dart
34 lines
877 B
Dart
import 'dart:async';
|
|
|
|
import 'package:aves/model/settings/settings.dart';
|
|
import 'package:aves/theme/durations.dart';
|
|
import 'package:aves/widgets/common/extensions/build_context.dart';
|
|
import 'package:flutter/material.dart';
|
|
import 'package:overlay_support/overlay_support.dart';
|
|
|
|
class DoubleBackPopHandler {
|
|
bool _backOnce = false;
|
|
Timer? _backTimer;
|
|
|
|
void dispose() {
|
|
_stopBackTimer();
|
|
}
|
|
|
|
bool pop(BuildContext context) {
|
|
if (!Navigator.canPop(context) && settings.mustBackTwiceToExit && !_backOnce) {
|
|
_backOnce = true;
|
|
_stopBackTimer();
|
|
_backTimer = Timer(Durations.doubleBackTimerDelay, () => _backOnce = false);
|
|
toast(
|
|
context.l10n.doubleBackExitMessage,
|
|
duration: Durations.doubleBackTimerDelay,
|
|
);
|
|
return false;
|
|
}
|
|
return true;
|
|
}
|
|
|
|
void _stopBackTimer() {
|
|
_backTimer?.cancel();
|
|
}
|
|
}
|