{"id":4306,"url":"https://github.com/TranLuongTuanAnh/react-native-coachmarks","last_synced_at":"2025-08-04T01:31:51.905Z","repository":{"id":57336134,"uuid":"122557704","full_name":"TranLuongTuanAnh/react-native-coachmarks","owner":"TranLuongTuanAnh","description":"Welcome to react-native-coachmark! It helps you easily create Coach Marks to enhance user experience!","archived":false,"fork":false,"pushed_at":"2023-02-27T22:29:39.000Z","size":6320,"stargazers_count":33,"open_issues_count":12,"forks_count":13,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-07-29T23:36:29.674Z","etag":null,"topics":["react-native-coachmarks","react-native-instructional-overlays","react-native-show-case-lib"],"latest_commit_sha":null,"homepage":"","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/TranLuongTuanAnh.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null}},"created_at":"2018-02-23T01:28:25.000Z","updated_at":"2025-06-03T07:39:03.000Z","dependencies_parsed_at":"2024-01-08T01:02:43.649Z","dependency_job_id":"b0dab934-674e-483d-a228-7a1b1d54586e","html_url":"https://github.com/TranLuongTuanAnh/react-native-coachmarks","commit_stats":null,"previous_names":["tranluongtuananh/react-native-coachmasks"],"tags_count":2,"template":false,"template_full_name":null,"purl":"pkg:github/TranLuongTuanAnh/react-native-coachmarks","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TranLuongTuanAnh%2Freact-native-coachmarks","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TranLuongTuanAnh%2Freact-native-coachmarks/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TranLuongTuanAnh%2Freact-native-coachmarks/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TranLuongTuanAnh%2Freact-native-coachmarks/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/TranLuongTuanAnh","download_url":"https://codeload.github.com/TranLuongTuanAnh/react-native-coachmarks/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TranLuongTuanAnh%2Freact-native-coachmarks/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":268630353,"owners_count":24281198,"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-08-03T02:00:12.545Z","response_time":2577,"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":["react-native-coachmarks","react-native-instructional-overlays","react-native-show-case-lib"],"created_at":"2024-01-05T20:17:07.536Z","updated_at":"2025-08-04T01:31:50.852Z","avatar_url":"https://github.com/TranLuongTuanAnh.png","language":"JavaScript","funding_links":[],"categories":["Components"],"sub_categories":["UI"],"readme":"# react-native-coachmarks\nWelcome to react-native-coachmarks! It helps you easily create Coach Marks to enhance user experience!\n## DEMO\n\n![](coachmarkSimulation.gif)\n\n# Installation\n`npm i react-native-coachmarks --save`\n\n# How to use \n ```\n \n const CM = [];\n     CM.push(\n      {\n        tooltip: 'The first steps of your tutorial',\n        position: {\n          top:35,\n          left: width - 58,\n        },\n        tooltipPosition: {\n          width: 300,\n          height: 120,\n          top: 110,\n          left: (width - 300) / 2,\n        },\n        style: {\n          width: 50,\n          height: 50,\n          borderRadius: 30,\n        },\n      },\n      {\n        tooltip: 'The second steps of your tutorial',\n        position: {\n          top:height - 70,\n          left: width - 91,\n        },\n        tooltipPosition: {\n          width: 300,\n          height: 120,\n          top: height - 210,\n          left: (width - 300) / 2,\n        },\n        style: {\n          width: 70,\n          height: 70,\n          borderRadius: 35,\n        },\n      },\n      {\n        tooltip: 'The last steps of your tutorial',\n        position: {\n          top:height - 75,\n          left: width - 305,\n        },\n        tooltipPosition: {\n          width: 300,\n          height: 120,\n          top: height - 210,\n          left: (width - 300) / 2,\n        },\n        style: {\n          width: 80,\n          height: 80,\n          borderRadius: 40,\n        },\n      },\n    );\n    \n   \n    \u003cCoachMarks\n      numberOfSteps={CM.length}\n      coachMarks={CM}\n      congratsText={\"Welcome to react-native-coachmark!\\n\"+\"It helps you easily create Coach Marks to enhance user experience\"}\n      congratsImage={require('./ic_public.png')}\n      visible={true}\n      onClose={() =\u003e {}}\n    /\u003e\n   \n ```\n# Properties\n\n```\n\u003cCoachMarks\n      numberOfSteps={CM.length}\n      coachMarks={CM}\n      congratsText={\"Welcome to react-native-coachmark!\\n\"+\"It helps you easily create Coach Marks to enhance user experience\"}\n      congratsImage={require('./ic_public.png')}\n      visible={true}\n      onClose={() =\u003e {}}\n/\u003e\n```\n\n| Prop  | Description |Default |\n| ------------- | ------------- | ------------- |\n| **coachMarks**  | This is array contains data of coachmarks(see [Properties of each step](https://github.com/TranLuongTuanAnh/react-native-coachmarks/blob/master/README.md#properties-of-each-step))  |None  |\n| **numberOfSteps**  | number of steps  | None  |\n| **congratsText**  | The text is shown in first view | None  |\n| **congratsImage**  | The image is shown in first view | None  |\n| **startButtonText**  | Start button text shown in first view | None  |\n| **skipButtonText**  | Skip button text shown in first view | None  |\n| **visible**  | CoachMarks is shown or hidden | false  |\n| **onClose**  | action is called in last step | None  |\n\n## Properties of each step\n\n```\n   {\n        tooltip: 'The first steps of your tutorial',\n        position: {\n          top:35,\n          left: width - 58,\n        },\n        tooltipPosition: {\n          width: 300,\n          height: 120,\n          top: 110,\n          left: (width - 300) / 2,\n        },\n        style: {\n          width: 50,\n          height: 50,\n          borderRadius: 30,\n        },\n    }\n```\n\n| Prop  | Description |Default |\n| ------------- | ------------- | ------------- |\n| **tooltip**  | Explain text show in this step  |None  |\n| **position**  | position of mask  |None  |\n| **tooltipPosition**  | position of tooltip  |None  |\n| **style**  | style of CoachMark  |None  |\n\n# Demo Project (for iPhone SE)\n[react-native-coachmarks-example](https://github.com/TranLuongTuanAnh/react-native-coachmarks/blob/master/Example/DemoCoachMark)\n\n# License\nThis project is licenced under the [MIT License.](https://opensource.org/licenses/mit-license.html)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FTranLuongTuanAnh%2Freact-native-coachmarks","html_url":"https://awesome.ecosyste.ms/projects/github.com%2FTranLuongTuanAnh%2Freact-native-coachmarks","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FTranLuongTuanAnh%2Freact-native-coachmarks/lists"}