Last updated:
0 purchases
playx core
PlayX Core #
Core package for the PlayX ecosystem containing shared classes and utilities.
Features #
Dependency Injection: Manage your dependencies using GetIt.
PlayxPrefs: Key-value storage powered by SharedPreferences.
PlayxSecurePrefs: Encrypted key-value storage powered by FlutterSecureStorage.
PlayxAsyncPrefs: Asynchronous key-value storage for non-blocking operations.
PlayxPrefsWithCache: Key-value storage with caching capabilities for improved performance.
PlayxEnv: Configure your application with global variables using a .env file.
bootCore Function: Set up and initialize essential components for the PlayX ecosystem.
Installation #
Add playx_core to your pubspec.yaml dependencies:
dependencies:
playx_core: ^0.5.2
copied to clipboard
Usage #
Boot the Core #
Initialize the PlayX core in your main function:
void main() async {
WidgetsFlutterBinding.ensureInitialized();
// Boot the core
await PlayxCore.bootCore(
securePrefsSettings: PlayxSecurePrefsSettings(),
createPlayxPrefs: true,
createPlayxAsyncPrefs: true,
createPlayxPrefsWithCache: true,
);
// Run the app
runApp(const MyApp());
}
copied to clipboard
Accessing GetIt #
To use dependency injection, access the GetIt instance:
// Register services
getIt.registerSingleton<MyService>(MyService());
// Retrieve services
MyService myService = getIt<MyService>();
copied to clipboard
Using Preferences #
PlayxPrefs
Store and retrieve data using PlayxPrefs:
// Store data
PlayxPrefs.setString('name','John Doe');
PlayxPrefs.setInt('age', 25);
PlayxPrefs.setDouble('height', 5.8);
// Retrieve data
String name = PlayxPrefs.getString('name');
int age = PlayxPrefs.getInt('age');
double? height = PlayxPrefs.maybeGetDouble('height');
copied to clipboard
PlayxSecurePrefs
Use PlayxSecurePrefs for encrypted storage:
// Store data securely
await PlayxSecurePrefs.setString('secureName','Jane Doe');
// Retrieve data securely
String secureName = await PlayxSecurePrefs.getString('secureName');
copied to clipboard
PlayxAsyncPrefs
For asynchronous key-value storage, use PlayxAsyncPrefs:
// Store data asynchronously
await PlayxAsyncPrefs.setString('asyncName','Async John');
// Retrieve data asynchronously
String asyncName = await PlayxAsyncPrefs.getString('asyncName');
copied to clipboard
PlayxPrefsWithCache
Utilize PlayxPrefsWithCache for caching preferences:
// Store data with caching
await PlayxPrefsWithCache.setString('cachedName','Cached Jane');
// Retrieve data with cache
String cachedName = await PlayxPrefsWithCache.getString('cachedName');
copied to clipboard
Documentation #
For detailed documentation on using PlayX Core, visit
the documentation.
Support and Contribution #
For questions, issues, or feature requests, please visit
the GitHub repository. Contributions are welcome!
See Also #
Playx: The PlayX ecosystem for redundant features, reduced code,
and improved productivity.
Playx_theme: Multi-theme features for Flutter apps.
Playx_localization: Localization and
internationalization for Flutter apps.
License #
This project is licensed under the MIT License - see
the LICENSE file for details.
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.