flutter_app_lock 4.2.0+2 flutter_app_lock: ^4.2.0+2 copied to clipboard
A Flutter package for showing a lock screen on app open and app pause.
import 'package:flutter/material.dart';
import 'app/app.dart';
void main({
bool initiallyEnabled = false,
@visibleForTesting
Duration initialBackgroundLockLatency = const Duration(seconds: 30),
}) {
runApp(MyApp(
initiallyEnabled: initiallyEnabled,
initialBackgroundLockLatency: initialBackgroundLockLatency,
));
}