Skip to content

goguardian/flutter-wootric

 
 

Repository files navigation

flutter-wootric

A Wootric SDK Wrapper for Flutter. https://www.wootric.com

Example

  1. Import flutter-wootric
  2. Init the library with your credentials
FlutterWootric.configure(
  clientId: "<CLIENT_ID",
  accountToken: "<ACCOUNT_TOKEN>",
);         
  1. Setup your survey properties // most of the original features already supported
 FlutterWootric.setEndUserEmail('test@example.com');
 FlutterWootric.setEndUserExternalId('123456789');
 FlutterWootric.setEndUserPropteries({
    'country': 'Germany',
    'age': "36",
  });
  FlutterWootric.showSurvey();          
  1. Call showWootricSurvey
FlutterWootric.forceSurvey(true); //Only for test
FlutterWootric.showSurvey();          

Todos

  • Support end user properties
  • Support individual survey settings
  • Support logging
  • Support Callbacks
  • Support Message Customization
  • Support Color Customization

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Dart 38.3%
  • Objective-C 23.0%
  • Java 20.6%
  • Ruby 15.2%
  • Shell 2.9%