{"id":19541306,"url":"https://github.com/wingify/vwo-flutter-sdk","last_synced_at":"2025-07-25T05:07:15.985Z","repository":{"id":56841778,"uuid":"389996980","full_name":"wingify/vwo-flutter-sdk","owner":"wingify","description":"VWO Flutter Wrapper","archived":false,"fork":false,"pushed_at":"2023-09-25T10:33:15.000Z","size":2512,"stargazers_count":3,"open_issues_count":0,"forks_count":3,"subscribers_count":7,"default_branch":"master","last_synced_at":"2025-04-26T17:46:48.510Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://developers.vwo.com/reference/flutter-guide","language":"Dart","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/wingify.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT.md","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}},"created_at":"2021-07-27T13:37:46.000Z","updated_at":"2024-04-07T11:35:39.000Z","dependencies_parsed_at":"2025-04-26T17:41:54.540Z","dependency_job_id":null,"html_url":"https://github.com/wingify/vwo-flutter-sdk","commit_stats":null,"previous_names":[],"tags_count":5,"template":false,"template_full_name":null,"purl":"pkg:github/wingify/vwo-flutter-sdk","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wingify%2Fvwo-flutter-sdk","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wingify%2Fvwo-flutter-sdk/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wingify%2Fvwo-flutter-sdk/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wingify%2Fvwo-flutter-sdk/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/wingify","download_url":"https://codeload.github.com/wingify/vwo-flutter-sdk/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wingify%2Fvwo-flutter-sdk/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":266959901,"owners_count":24012583,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-07-25T02:00:09.625Z","response_time":70,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":[],"created_at":"2024-11-11T03:09:36.831Z","updated_at":"2025-07-25T05:07:15.966Z","avatar_url":"https://github.com/wingify.png","language":"Dart","funding_links":[],"categories":[],"sub_categories":[],"readme":"# VWO Flutter SDK\n\nThis open source library allows you to A/B Test your Flutter app.\n\n## Requirements\n\n* Dart sdk version ```\u003e=2.12.0 \u003c 4.0.0```\n* Flutter version ```\u003e=1.20.0```\n\n## Documentation\n\nRefer [Official VWO Documentation](https://developers.vwo.com/reference#flutter-guide)\n\n## Basic Usage\n\n**Instantiation**\n\nSDK provides a method to instantiate a VWO client as an instance. The method accepts an apiKey and an object to configure the VWO client.\nThe required parameter for instantiating the SDK is apiKey.\n\n```dart\nVWOConfig vwoConfig = VWOConfig();\nif (Platform.isIOS) {\n  await VWO.launch(ios_apiKey, vwoConfig: vwoConfig);\n} else {\n  await VWO.launch(android_apiKey, vwoConfig: vwoConfig);\n}\n```\n\n**Push Custom Dimension**\n\n```dart\nawait VWO.pushCustomDimension(\"CUSTOM_DIMENSION_KEY\", \"CUSTOM_DIMENSION_VALUE\");\n```\n\n**Get Variation Name**\n\n```dart\nawait VWO.getVariationNameForTestKey(\"campaign_key\");\n\n```\n\n**Get Variable Value**\n\n```dart\n//get String variable value\nawait VWO.getStringForKey(\"variable_key\", \"default_value\")\n\n//get Integer variable value\nawait VWO.getIntegerForKey(\"variable_key\", default_value)\n\n//get Double variable value\nawait VWO.getDoubleForKey(\"variable_key\", default_value)\n\n//get Boolean variable value\nawait VWO.getBooleanForKey(\"variable_key\", default_value)\n\n//get Object variable value\nawait VWO.getObjectForKey(\"variable_key\", default_value)\n```\n\n**Trigger Goal**\n\n```dart\n//custom-goal\nawait VWO.trackConversion(\"test_goal\");\n\n//revenue-goal\nawait VWO.trackConversion(\"test_goal\", revenue_value);\n```\n\n\n\n## Credentials\n\nThis SDK requires an app key. You can sign up for an account at [VWO](https://vwo.com). \nOnce there, you can add a new Android/iOS App, and use the generated app key in the app.\n\n## Setting up VWO account\n\n* Sign Up for VWO account at https://vwo.com\n* Create a new android app from create menu\n* Use the app generated app key, while integrating SDK into android/iOS app.\n* Create and run campaigns.\n\n\n## Authors\n- Main Contributor \u0026 Maintainer - [sanyamjain65](https://github.com/sanyamjain65)\n- Repo health maintainer - [softvar](https://github.com/softvar)\n\n## Changelog\nRefer [CHANGELOG.md](https://github.com/wingify/vwo-flutter-sdk/blob/master/CHANGELOG.md)\n\n## Contributing\n\nPlease go through our [contributing guidelines](https://github.com/wingify/vwo-flutter-sdk/blob/master/CONTRIBUTING.md)\n\n\n## Code of Conduct\n\n[Code of Conduct](https://github.com/wingify/vwo-flutter-sdk/blob/master/CODE_OF_CONDUCT.md)\n\n\n## License\n\n[Apache License, Version 2.0](https://github.com/wingify/vwo-flutter-sdk/blob/master/LICENSE)\n\nCopyright 2021 Wingify Software Pvt. Ltd.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwingify%2Fvwo-flutter-sdk","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fwingify%2Fvwo-flutter-sdk","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwingify%2Fvwo-flutter-sdk/lists"}