idle_detector_wrapper

Creator: coderz1093

Last updated:

0 purchases

idle_detector_wrapper Image
idle_detector_wrapper Images
Add to Cart

Description:

idle detector wrapper

Flutter Idle Detector Package #
The Flutter Idle Detector package is a convenient wrapper that allows you to easily detect user idle time within your Flutter applications. With this package, you can set the duration of idle time and specify actions to be performed when the user becomes idle.
Example Usage #
IdleDetector(
idleTime: const Duration(minutes: 5),
onIdle: () {
// Perform actions when the user becomes idle
},
child: Scaffold(
resizeToAvoidBottomInset: true,
extendBody: true,
backgroundColor: Colors.white,
appBar: AppBar(
title: Text('Example'),
),
body: Container(
child: Text("Example"),
),
),
),
copied to clipboard
Getting Started #


To use this package, follow these steps:


Add the following dependency to your project's pubspec.yaml file:


dependencies:
flutter_idle_detector: ^1.0.0
copied to clipboard


Run the command flutter pub get to fetch the package.


Import the package into your Dart code:


import 'package:flutter_idle_detector/flutter_idle_detector.dart';
copied to clipboard

Start using the IdleDetector widget within your Flutter application as shown in the example usage above.

That's it! You can now easily detect user idle time and perform actions accordingly using the Flutter Idle Detector package.
Contributing #
Contributions are welcome! If you find any issues or have suggestions for improvement, please open an issue or submit a pull request on the GitHub repository.

License

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Customer Reviews

There are no reviews.