{"id":30959699,"url":"https://github.com/userorient/userorient-flutter","last_synced_at":"2026-01-31T20:00:24.869Z","repository":{"id":243437037,"uuid":"812420706","full_name":"UserOrient/userorient-flutter","owner":"UserOrient","description":"💬 User feedback SDK for Flutter","archived":false,"fork":false,"pushed_at":"2026-01-22T17:25:06.000Z","size":1354,"stargazers_count":22,"open_issues_count":2,"forks_count":5,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-01-23T10:31:52.877Z","etag":null,"topics":["features","feedback","flutter"],"latest_commit_sha":null,"homepage":"https://pub.dev/packages/userorient_flutter","language":"Dart","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"bsd-3-clause","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/UserOrient.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2024-06-08T20:58:46.000Z","updated_at":"2026-01-22T17:25:13.000Z","dependencies_parsed_at":"2024-06-10T23:45:36.390Z","dependency_job_id":"f163f8b3-6513-4f3f-a38f-a3c3ccbbdb43","html_url":"https://github.com/UserOrient/userorient-flutter","commit_stats":null,"previous_names":["userorient/userorient-flutter"],"tags_count":3,"template":false,"template_full_name":null,"purl":"pkg:github/UserOrient/userorient-flutter","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/UserOrient%2Fuserorient-flutter","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/UserOrient%2Fuserorient-flutter/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/UserOrient%2Fuserorient-flutter/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/UserOrient%2Fuserorient-flutter/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/UserOrient","download_url":"https://codeload.github.com/UserOrient/userorient-flutter/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/UserOrient%2Fuserorient-flutter/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28952575,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-31T18:30:42.805Z","status":"ssl_error","status_checked_at":"2026-01-31T18:30:19.593Z","response_time":128,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["features","feedback","flutter"],"created_at":"2025-09-11T17:01:37.671Z","updated_at":"2026-01-31T20:00:24.838Z","avatar_url":"https://github.com/UserOrient.png","language":"Dart","readme":"# [UserOrient.com](https://userorient.com)\n\n**Feature Voting Board for Flutter**\n\nUserOrient is a feature voting board that helps you collect feedback from your users and prioritize your development roadmap in your Flutter projects.\n\n\u003cp align=\"center\"\u003e\n  \u003cimg src=\"https://raw.githubusercontent.com/UserOrient/userorient-flutter/refs/heads/main/assets/cover.png\" alt=\"UserOrient Cover\" width=\"100%\"/\u003e\n\u003c/p\u003e\n\n## 🎯 Getting Started\n\nConsidering that you have already created a project on [UserOrient.com](https://app.userorient.com) and received an API key, follow these steps to integrate the SDK into your Flutter app.\n\n### 📦 Add the dependency\n\nAdd the following to your `pubspec.yaml` file:\n\n```yaml\ndependencies:\n  userorient_flutter: \u003clatest-version\u003e\n```\n\n### ⚙️ Initialize the SDK\n\nInitialize the SDK with your project's API key and preferred language:\n\n```dart\nimport 'package:userorient_flutter/userorient_flutter.dart';\n\nvoid main() {\n  UserOrient.configure(\n    apiKey: 'YOUR_API_KEY',\n    languageCode: 'en',\n  );\n```\n\n### 🎨 Display the board\n\nBefore displaying the board, set user information using `UserOrient.setUser()`. Ideally you should pass a unique identifier (`uniqueIdentifier`) for the user so that their votes can persist across app installs. This can be an email address, phone number, or custom ID. If not provided, UserOrient will generate a random identifier.\n\n```dart\nUserOrient.setUser(\n  uniqueIdentifier: '123456',\n  fullName: 'Kamran Bekirov',\n  email: 'kamran@userorient.com',\n  phoneNumber: '+1234567890',\n  language: 'en',\n  isPaying: true,\n  extra: {\n    'age': 27,\n    'gender': 'male',\n  }\n);\n```\n\nThen, to show the board, call `UserOrient.openBoard(context)`.\n\n```dart\nUserOrient.openBoard(context);\n```\n\nThat's it.\n\n\u003e **Note:** It's recommended to call `UserOrient.setUser` before each board launch to ensure up-to-date user information.\n\n## 💰 Paying Users\n\nSet the `isPaying` property to `true` for users who have a paid subscription or are paying customers. This enables powerful filtering in your UserOrient dashboard:\n\n- **Filter by paying users**: Toggle \"filter by paying users\" in the dashboard to see votes specifically from paying customers\n- **Prioritize features**: Understand which features matter most to your revenue-generating users\n- **Better decision-making**: Make data-driven decisions by focusing on feedback from your most valuable users\n\nSee the `isPaying` property in the [User Identification](#user-identification) example above.\n\n## 🫟 Customize appearance\n\nCustomize the appearance to match your app's design:\n\n```dart\nUserOrient.setTheme(\n  light: UserOrientColors(\n    backgroundColor: Colors.white,\n    accentColor: Colors.blue,\n  ),\n  dark: UserOrientColors(\n    backgroundColor: Color(0xff1D1D1D),\n    accentColor: Colors.blue,\n  ),\n);\n```\n\n- `backgroundColor`: SDK's background color\n- `accentColor`: Primary button, active tab and voted state color (text color adjusts automatically)\n\nFont family is inherited from your app's `ThemeData`.\n\n## 👋 Logging Out\n\nWhen a user logs out of your app, call `UserOrient.clearCache()` to prevent potential issues:\n\n```dart\nawait UserOrient.clearCache();\n```\n\n## 💬 Contact\n\nFor any questions or support, please reach out to us:\n\n- Email: [kamran@userorient.com](mailto:kamran@userorient.com)\n- Twitter: [@userorient](https://twitter.com/userorient)","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fuserorient%2Fuserorient-flutter","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fuserorient%2Fuserorient-flutter","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fuserorient%2Fuserorient-flutter/lists"}