{"id":14974284,"url":"https://github.com/mindinventory/react-native-navigation-animation","last_synced_at":"2025-07-13T19:36:37.629Z","repository":{"id":108849430,"uuid":"152422458","full_name":"Mindinventory/react-native-navigation-animation","owner":"Mindinventory","description":"Transition navigation component for React Native","archived":false,"fork":false,"pushed_at":"2019-06-27T06:05:45.000Z","size":236,"stargazers_count":152,"open_issues_count":0,"forks_count":22,"subscribers_count":11,"default_branch":"master","last_synced_at":"2025-02-01T03:24:00.164Z","etag":null,"topics":["react","react-native","react-native-animation","react-native-app","react-native-elements","react-native-library","react-navigation","reactnative"],"latest_commit_sha":null,"homepage":"https://www.mindinventory.com/react-native-app-development.php","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Mindinventory.png","metadata":{"files":{"readme":"README.md","changelog":null,"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}},"created_at":"2018-10-10T12:47:53.000Z","updated_at":"2025-01-06T09:18:53.000Z","dependencies_parsed_at":"2023-04-01T12:18:25.538Z","dependency_job_id":null,"html_url":"https://github.com/Mindinventory/react-native-navigation-animation","commit_stats":{"total_commits":10,"total_committers":2,"mean_commits":5.0,"dds":0.09999999999999998,"last_synced_commit":"3e05477d64a67012583deb7128082de9c596b551"},"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Mindinventory%2Freact-native-navigation-animation","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Mindinventory%2Freact-native-navigation-animation/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Mindinventory%2Freact-native-navigation-animation/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Mindinventory%2Freact-native-navigation-animation/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Mindinventory","download_url":"https://codeload.github.com/Mindinventory/react-native-navigation-animation/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":238455155,"owners_count":19475400,"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","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","react-native","react-native-animation","react-native-app","react-native-elements","react-native-library","react-navigation","reactnative"],"created_at":"2024-09-24T13:50:20.419Z","updated_at":"2025-02-12T10:32:46.930Z","avatar_url":"https://github.com/Mindinventory.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# React Native Navigation Animation\n\nBeautiful Navigation animation with transition made with React Native.\n\nCheck it out on Dribbble (https://dribbble.com/shots/4115418-Home-page-interactions)\n\n\n\u003cimg src=\"https://cdn.dribbble.com/users/1233499/screenshots/4115418/iphone_x6.gif\" \u003e\n\n\n\nAndroid: `react-native run-android`\n\niPhone: `react-native run-ios`\n\n\n# Usage\n\n```js\nrender() {\n    return (\n        \u003cSafeAreaView style={styles.mainContainer}\u003e\n            \u003cView style={styles.navigationHeaderContainer}\u003e\n                \u003cImage style={{bottom: 15, position: 'absolute', left: 15,height:20,width:20,}}\n                       source={require('/Volumes/Project/ReactProject/AnimationDemo/Images/ic_menu.png')}/\u003e\n                \u003cText style={{bottom: 15, position: 'absolute', right: 15,color: '#3842B0',}}\u003e+ Create\u003c/Text\u003e\n            \u003c/View\u003e\n\n\n            \u003cScrollView style={styles.mainContainer}\u003e\n\n            {/* Top Container ........ */}\n            \u003cView style={styles.topContainer}\u003e\n\n                {/* User Image ........ */}\n                \u003cImage style={styles.userImageContainer}\n                       source={require('/Volumes/Project/ReactProject/AnimationDemo/Images/maxresdefault.jpg')}/\u003e\n\n                \u003cText style={{marginLeft: 15, marginTop: 8, color: '#6471F4'}}\u003e\n                    Hello,{\"\\n\"}Dance Montgomery\n                \u003c/Text\u003e\n\n                \u003cText style={{\n                    marginLeft: 15,\n                    marginRight: 15,\n                    marginTop: 30,\n                    color: '#3842B0',\n                    fontSize: 40,\n                    fontWeight: 'bold'\n                }}\u003e\n                    What you want to cook today?\n                \u003c/Text\u003e\n\n\n                {/* Search View Container ........ */}\n                \u003cView style={styles.topSearchContainer}\u003e\n                    \u003cImage style={{\n                        marginLeft: 5,\n                        width: scaleToDimension(40),\n                        backgroundColor: 'transparent',\n                        height: scaleToDimension(40),\n                        resizeMode: 'center'\n                    }}\n                           source={require('/Volumes/Project/ReactProject/AnimationDemo/Images/magnifying-glass-icon.png')}/\u003e\n                    \u003cTextInput style={{flex: 1, marginLeft: 5, marginRight: 10, color : \"#3842B0\"}} placeholder={'Search'} placeholderTextColor='#3842B0' /\u003e\n                \u003c/View\u003e\n\n\n            \u003c/View\u003e\n\n            {/* Bottom Container ........ */}\n            \u003cView style={styles.bottomContainer}\u003e\n\n                {/* Tab bar View........ */}\n                \u003cView style={styles.bottomTabBarContainer}\u003e\n                    \u003cFlatList\n                        showsHorizontalScrollIndicator={false}\n                        horizontal={true}\n                        data={arrTapBar}\n                        extraData={this.state}\n                        renderItem={({item, index}) =\u003e this.renderTapBarItem(item, index)}\n                    /\u003e\n                \u003c/View\u003e\n\n                {/* Grid View........ */}\n                \u003cView style={styles.bottomGridContainer}\u003e\n                    \u003cFlatList\n                        showsHorizontalScrollIndicator={false}\n                        onPress\n                        horizontal={true}\n                        data={arrTapBar}\n                        renderItem={({item, index}) =\u003e this.renderGridItem(item, index)}\n                    /\u003e\n                \u003c/View\u003e\n\n\n            \u003c/View\u003e\n\n        \u003c/ScrollView\u003e\n        \u003c/SafeAreaView\u003e\n    );\n}\n```\n\n\n## Dependencies\n\n* `react-navigation-fluid-transitions`\n\n\n# Changelog\n\n### Version: 1.0\n\n  * Initial Build\n\n\n\n# LICENSE!\n\nReact-native-navigation-animation is [MIT-licensed](https://github.com/Mindinventory/react-native-navigation-animation/blob/master/LICENSE).\n\n# Let us know!\nWe’d be really happy if you send us links to your projects where you use our component. Just send an email to sales@mindinventory.com And do let us know if you have any questions or suggestion regarding our work.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmindinventory%2Freact-native-navigation-animation","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmindinventory%2Freact-native-navigation-animation","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmindinventory%2Freact-native-navigation-animation/lists"}