expire_it 0.1.0 expire_it: ^0.1.0 copied to clipboard
App will expire or the user will not able to user after expiry date finishes. Best for freelancing client trial builds.
ExpireIt Flutter App #
ExpireIt is a unique Flutter app designed to provide an expiration mechanism for applications. This app ensures that the target app becomes inaccessible after a specified date and time, preventing unauthorized usage beyond the intended period. Unlike other methods that rely on local device time changes, ExpireIt sources its expiration information from an online server, making it highly secure and tamper-resistant.
Features #
-
Secure Expiration: ExpireIt utilizes an online server to fetch expiration date and time, ensuring that unauthorized access attempts through local time changes are ineffective.
-
Reliable Server: The expiration information is stored on a reliable online server, making it virtually impossible to manipulate the expiration date and time locally.
-
Easy Integration: Integration of the ExpireIt feature into your Flutter app is straightforward and hassle-free.
-
Customizable UI: The UI of the ExpireIt dialog can be customized to seamlessly blend with the design of your app.
How It Works #
-
Integration: To integrate ExpireIt into your Flutter app, follow the provided guidelines to add the necessary code and UI elements.
-
Server Communication: The ExpireIt app communicates with an online server to fetch the expiration date and time of the target app.
-
Expiration Dialog: When the specified expiration date and time are reached, ExpireIt will display a dialog within the target app, informing the user that the app has expired and access is no longer available.
Getting Started #
To integrate the ExpireIt functionality into your Flutter app, follow these steps:
-
Add Dependency: Add the ExpireIt package as a dependency in your
pubspec.yaml
file:dependencies: expireit: ^0.1.0
-
Import the Package: Import the ExpireIt package in your Dart file:
import 'package:expireit/expireit.dart';
-
Build UI: In your Flutter app's build method, utilize the ExpireBuilder widget to manage the UI based on expiration status:
ExpireBuilder( controller: UserDefineExpireController( expiryDate: DateTime(datetime), ), expireBuilder: (context) { return const Center( child: Text("Expired"), ); }, builder: (context) { return const Center( child: Text("Home screen"), ); }, loadingBuilder: (context) { return const Center( child: CircularProgressIndicator(), ); }, ),
-
Customize UI: Customize the appearance of the expiration dialog and loading indicator to match your app's design.
For a more detailed guide and advanced configuration options, please refer to the ExpireIt documentation.
Compatibility #
Requires Flutter version 2.0.0 or higher.
License #
ExpireIt is released under the MIT License.
ExpireIt is designed to offer a robust and secure expiration mechanism for Flutter apps, safeguarding your app's usage beyond specified dates and times. If you have any questions, concerns, or feedback, feel free to contact us at raysummee@gmail.com. We are excited to see how ExpireIt enhances the security of your apps!