userorient_flutter 0.0.5 copy "userorient_flutter: ^0.0.5" to clipboard
userorient_flutter: ^0.0.5 copied to clipboard

UserOrient Flutter SDK: Discover what your users really want and stop building wrong features.

UserOrient SDK for Flutter #

🚀 Introduction #

Discover what your users really want and stop building wrong features.

UserOrient is a feature request board that helps you collect feedback from your users and prioritize what to build next.

🤓 Getting Started #

🔓 Join closed-beta #

Right now, UserOrient is in closed-beta. If you want to join, for which I would be very grateful, please fill out this form and I will get back to you as soon as possible.

Supposing you have been accepted, you will receive an API key which you will use to configure UserOrient.

⛓️ Add the dependency #

Add the following to your pubspec.yaml file:

dependencies:
  userorient_flutter: ^0.0.3

📱 Add to your app #

Initialize UserOrient before using it:

import 'package:userorient_flutter/userorient_flutter.dart';

void main() {
  UserOrient.configure(
    apiKey: 'YOUR_API_KEY',
  );

  UserOrient.setUser(
  // Any unique identifier for the user
  uniqueIdentifier: '123456',

  // User information
  fullName: 'John Doe',
  email: 'bighead@bighetti.me',
  phoneNumber: '+1234567890',
  language: 'en',

  // Extra dynamic information about the user
  extra: {
    'age': 30,
    'isPremium': true,
  }
}

🎬 Show the board #

import 'package:userorient_flutter/userorient_flutter.dart';

void showBoard() {
  UserOrient.showBoard(context);
}
11
likes
0
pub points
62%
popularity

Publisher

verified publisheruserorient.com

UserOrient Flutter SDK: Discover what your users really want and stop building wrong features.

Homepage
Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

flutter, flutter_svg, flutter_svg_provider, http, shared_preferences, url_launcher

More

Packages that depend on userorient_flutter