userorient_flutter 0.0.6
userorient_flutter: ^0.0.6 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);
}