All Projects → Mindinventory → React Native Navigation Animation

Mindinventory / React Native Navigation Animation

Licence: mit
Transition navigation component for React Native

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to React Native Navigation Animation

photos
"Fx Fotos" is an opensource gallery app in react native with the same smoothness and features of Google Photos and Apple Photos. It is backend gnostic and connects to decentralized backends like "box", "Dfinity", "Filecoin" and "Crust".
Stars: ✭ 620 (+366.17%)
Mutual labels:  reactnative, react-native-app
React-Native-developer-roadmap
📒 React Native is a cross-platform library to build mobile apps using React and JavaScript. This guide is to help you in your React Native journey. this repo contain a great the resources you need to work with React Native art,(Articles, Tutorials)
Stars: ✭ 565 (+324.81%)
Mutual labels:  react-navigation, react-native-app
Comicbook
React-Native跨平台漫画App免费视频:http://www.kongyixueyuan.com/course/3528
Stars: ✭ 199 (+49.62%)
Mutual labels:  react-navigation, reactnative
Galio
Galio is a beautifully designed, Free and Open Source React Native Framework
Stars: ✭ 2,772 (+1984.21%)
Mutual labels:  reactnative, react-native-app
Status React
a free (libre) open source, mobile OS for Ethereum
Stars: ✭ 3,307 (+2386.47%)
Mutual labels:  reactnative, react-native-app
DLReactNativeArchitecture
React Native Architecture
Stars: ✭ 18 (-86.47%)
Mutual labels:  react-navigation, react-native-app
coronadev
Aplicativo para consultar a situação global do COVID-19
Stars: ✭ 44 (-66.92%)
Mutual labels:  react-navigation, reactnative
Mozi
此项目致力于构建一套最基础,最精简,可维护的react-native项目,支持ios,android 🌹
Stars: ✭ 501 (+276.69%)
Mutual labels:  react-navigation, react-native-app
MyApp
A template to create awesome Apps easily ⚡️
Stars: ✭ 39 (-70.68%)
Mutual labels:  react-navigation, react-native-app
virena
A React-Native navigation prototyping tool on the desktop.
Stars: ✭ 58 (-56.39%)
Mutual labels:  react-navigation, react-native-app
React Native Boilerplate
🚀 Type Based Architecture for developing React Native Apps using react, redux, sagas and hooks with auth flow
Stars: ✭ 375 (+181.95%)
Mutual labels:  react-navigation, react-native-app
React Native Boilerplate
🚀 React Native Boilerplate Updated
Stars: ✭ 9 (-93.23%)
Mutual labels:  react-navigation, react-native-app
Reanimated Collapsible Navbar
Declarative implementation of a collapsible navigation bar with snapping in React Native, with all animations running on the UI thread 🚀
Stars: ✭ 86 (-35.34%)
Mutual labels:  reactnative
Reactnativeauth
Mobile user authentication flow with React Native, Expo, and AWS Amplify: Sign In, Sign Up, Confirm Sign Up, Forget Password, Reset Password.
Stars: ✭ 108 (-18.8%)
Mutual labels:  react-navigation
React Native Firebase
🔥 A well-tested feature-rich modular Firebase implementation for React Native. Supports both iOS & Android platforms for all Firebase services.
Stars: ✭ 9,674 (+7173.68%)
Mutual labels:  react-native-app
React Native Fingerprint Identify
Awesome Fingerprint Identify for react-native (android only)
Stars: ✭ 81 (-39.1%)
Mutual labels:  reactnative
React Native Animations
React Native Animations
Stars: ✭ 115 (-13.53%)
Mutual labels:  reactnative
Insta Snap
Instagram and Snapchat like React Native App
Stars: ✭ 107 (-19.55%)
Mutual labels:  react-native-app
Reactxp Starter
Basic Blank ReactXP Project for Development
Stars: ✭ 75 (-43.61%)
Mutual labels:  reactnative
Ejdb
🏂 EJDB 2.0 — Embeddable JSON Database engine C library. Simple XPath like query language (JQL). Websockets / Android / iOS / React Native / Flutter / Java / Dart / Node.js bindings. Docker image.
Stars: ✭ 1,187 (+792.48%)
Mutual labels:  reactnative

React Native Navigation Animation

Beautiful Navigation animation with transition made with React Native.

Check it out on Dribbble (https://dribbble.com/shots/4115418-Home-page-interactions)

Android: react-native run-android

iPhone: react-native run-ios

Usage

render() {
    return (
        <SafeAreaView style={styles.mainContainer}>
            <View style={styles.navigationHeaderContainer}>
                <Image style={{bottom: 15, position: 'absolute', left: 15,height:20,width:20,}}
                       source={require('/Volumes/Project/ReactProject/AnimationDemo/Images/ic_menu.png')}/>
                <Text style={{bottom: 15, position: 'absolute', right: 15,color: '#3842B0',}}>+ Create</Text>
            </View>


            <ScrollView style={styles.mainContainer}>

            {/* Top Container ........ */}
            <View style={styles.topContainer}>

                {/* User Image ........ */}
                <Image style={styles.userImageContainer}
                       source={require('/Volumes/Project/ReactProject/AnimationDemo/Images/maxresdefault.jpg')}/>

                <Text style={{marginLeft: 15, marginTop: 8, color: '#6471F4'}}>
                    Hello,{"\n"}Dance Montgomery
                </Text>

                <Text style={{
                    marginLeft: 15,
                    marginRight: 15,
                    marginTop: 30,
                    color: '#3842B0',
                    fontSize: 40,
                    fontWeight: 'bold'
                }}>
                    What you want to cook today?
                </Text>


                {/* Search View Container ........ */}
                <View style={styles.topSearchContainer}>
                    <Image style={{
                        marginLeft: 5,
                        width: scaleToDimension(40),
                        backgroundColor: 'transparent',
                        height: scaleToDimension(40),
                        resizeMode: 'center'
                    }}
                           source={require('/Volumes/Project/ReactProject/AnimationDemo/Images/magnifying-glass-icon.png')}/>
                    <TextInput style={{flex: 1, marginLeft: 5, marginRight: 10, color : "#3842B0"}} placeholder={'Search'} placeholderTextColor='#3842B0' />
                </View>


            </View>

            {/* Bottom Container ........ */}
            <View style={styles.bottomContainer}>

                {/* Tab bar View........ */}
                <View style={styles.bottomTabBarContainer}>
                    <FlatList
                        showsHorizontalScrollIndicator={false}
                        horizontal={true}
                        data={arrTapBar}
                        extraData={this.state}
                        renderItem={({item, index}) => this.renderTapBarItem(item, index)}
                    />
                </View>

                {/* Grid View........ */}
                <View style={styles.bottomGridContainer}>
                    <FlatList
                        showsHorizontalScrollIndicator={false}
                        onPress
                        horizontal={true}
                        data={arrTapBar}
                        renderItem={({item, index}) => this.renderGridItem(item, index)}
                    />
                </View>


            </View>

        </ScrollView>
        </SafeAreaView>
    );
}

Dependencies

  • react-navigation-fluid-transitions

Changelog

Version: 1.0

  • Initial Build

LICENSE!

React-native-navigation-animation is MIT-licensed.

Let us know!

We’d be really happy if you send us links to your projects where you use our component. Just send an email to [email protected] And do let us know if you have any questions or suggestion regarding our work.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].