flutter_optimizely

Last updated:

0 purchases

flutter_optimizely Image
flutter_optimizely Images
Add to Cart

Description:

flutter optimizely

flutter_optimizely #







A Flutter plugin for Optimizely.
This plugin has been derived from https://github.com/HomeX-It/optimizely-dart.

Getting Started #
Currently Optimizely does not offer a dedicated Flutter SDK.
This Flutter plugin is bridging the gap between a Flutter application and the native Optimizely SDKs for Android and iOS/Swift.
Usage #
ATTENTION: You MUST initialize the plugin/manager AND set up the user BEFORE using any functions!
Currently, the only functions supported are:

isFeatureEnabled (e.g. see https://docs.developers.optimizely.com/full-stack/docs/is-feature-enabled-android)
getAllFeatureVariables (e.g. see https://docs.developers.optimizely.com/full-stack/docs/get-all-feature-variables-android)
getAllEnabledFeatures (e.g. see https://docs.developers.optimizely.com/full-stack/docs/get-all-feature-variables-android)

Example #
import 'package:flutter_optimizely/flutter_optimizely.dart';

class MyClass {
final _flutterOptimizelyPlugin = FlutterOptimizely();

// if you have a data file at hand, you can initialize synchronously
// hint: this will make the plugin available faster
Future<void> initOptimizelySync() async {
final String dataFile = await DefaultAssetBundle.of(context).loadString('assets/datafile.json');
await _flutterOptimizelyPlugin.initSync(
sdkKey,
dataFile,
);
await _flutterOptimizelyPlugin.setUser('user', <String, dynamic>{
'isLoggedIn': true,
});
}

// if you don't have a data file at hand, or want to let the manager download it, initialize the plugin asynchronously
Future<void> initOptimizelyAsync() async {
final String dataFile = await DefaultAssetBundle.of(context).loadString('assets/datafile.json');
await _flutterOptimizelyPlugin.init(
sdkKey,
);
await _flutterOptimizelyPlugin.setUser('user', <String, dynamic>{
'isLoggedIn': true,
});
}

// examples on how to make use of the provided functions
Future<void> anyAction() async {
final bool isFeatureEnabled = await _flutterOptimizelyPlugin.isFeatureEnabled('feature_key');
final Map<String, dynamic> variables = await _flutterOptimizelyPlugin.getAllFeatureVariables('feature_key');
final Set<String> enabledFeatures = await _flutterOptimizelyPlugin.getAllEnabledFeatures();
}
}
copied to clipboard
Installation #
Add flutter_optimizely as a dependency in your project's pubspec.yaml.
dependencies:
flutter_optimizely: ^x.y.z
copied to clipboard
Then run flutter pub get in your project directory.

Contributing #
We welcome community contributions to this project.
Supporting #
If you enjoy the application and want to support my efforts, please feel free to buy me a coffe. :)

License:

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

Files In This Product:

Customer Reviews

There are no reviews.