All Projects → adityasonel → thereactapp

adityasonel / thereactapp

Licence: MIT license
🚀 A powerful React-Native Modules & UI Components showcase. That show you the power and wisdom of React-Native in Mobile Application Development (Work in Progress) 🚀

Programming Languages

javascript
184084 projects - #8 most used programming language
objective c
16641 projects - #2 most used programming language
python
139335 projects - #7 most used programming language
java
68154 projects - #9 most used programming language

Projects that are alternatives of or similar to thereactapp

MyApp
A template to create awesome Apps easily ⚡️
Stars: ✭ 39 (+56%)
Mutual labels:  react-native-vector-icons, react-native-template
react-native-boilerplate
🚀 A highly scalable, react-native boilerplate reinforced with react-boilerplate which focus on performance and best practices. 🔥. 💻 🚀 😎 👾 👽
Stars: ✭ 82 (+228%)
Mutual labels:  react-native-template
math-magicians
Website for all fans of mathematics. It is a Single Page App (SPA) that allows users to make simple calculations. read a random motivation-related quote and write a to-do list.
Stars: ✭ 22 (-12%)
Mutual labels:  reactapp
react-weather-app
A simple weather search app using React.
Stars: ✭ 28 (+12%)
Mutual labels:  reactapp
Snowflake
❄️ A React-Native Android iOS Starter App/ BoilerPlate / Example with Redux, RN Router, & Jest with the Snowflake Hapi Server running locally or on RedHat OpenShift for the backend, or a Parse Server running locally or remotely on Heroku
Stars: ✭ 4,576 (+18204%)
Mutual labels:  react-native-vector-icons
react-native-boilerplate
React Native boilerplate with react-navigation and native-base
Stars: ✭ 15 (-40%)
Mutual labels:  react-native-vector-icons
React Native Starter
🚀A powerful react native starter template that bootstraps development of your mobile application
Stars: ✭ 1,798 (+7092%)
Mutual labels:  react-native-template
MetFlix
A Movie app demo. Like NetFlix ❤️
Stars: ✭ 50 (+100%)
Mutual labels:  reactnavigation

TheReactApp 🚀

A powerful React-Native Modules & UI Components showcase. That show you the power and wisdom of React-Native in Mobile Application Development. TheReactApp is a mobile application template built with some others powerfull react native libraries like React Navigation, React-Native Vector Icon, React-Native Linear Gradient. Thanks to all respective developers - this libraries is all you need to build your react native app faster. Working Android Application demo coming soon on Google PlayStore. For now you can download working APK here, Download - TheReactApp

If you are newbie React-Native Developer then this repo is 110% for you.

Screenshots

What's inside

  • Up-to-date code with androidx and xcode libraries
  • UI/UX Design from best dribbble templates
  • Firebase Database Integration
  • Integrate React-Navigation
  • Integrate React-Native Linear Gradient
  • Use React-Native Vector Icon
  • Transitions with React Navigation Fluid Transition
  • Redux Store integration
  • Authentication through firebase
  • Firebase Cloudstore integration
  • Support for large screen devices

All uncheck features and many more sparking things are coming in future.

Getting Started

1. Clone and Install

# Clone the repo
git clone https://github.com/adityasonel/TheReactApp.git

# Install dependencies
yarn install

or

npm install

2. Link all native dependencies:

react-native link

That's it! Cool, right?

3. Integrate Firebase

Firebase Database is used to render sample data on HomeTab. For fetch data from firebase, you have to add your firebase keys in FirebaseConfig.js file that is,

var FirebaseConfig = {
    apiKey: BuildConfig.FIREBASE_API_KEY,
    authDomain: BuildConfig.FIREBASE_AUTH_DOMAIN,
    databaseURL: BuildConfig.FIREBASE_DB_URL,
    projectId: BuildConfig.FIREBASE_PROJECT_ID,
    storageBucket: BuildConfig.FIREBASE_STORAGE_BUCKET
};

Get all your firebase keys from Firebase Console and add here at src/config/FirebaseConfig.js. And that's all!!!

For more info about how to add firebase to react-native application check this firebase blog post.

Currently known issue

As i stated above i am using latest androidx library in this project. But react-native-gesture-handler is still on v4 version of android sdk. So when you try to run application by react-native run-android, you can get an error as

error: package android.support.v4.util does not exist

Solving with android studio

If you are familiar with android studio, you can solve this error by just import latest dependencies. Search for files RNGestureHandlerEvent.java and RNGestureHandlerStateChangeEvent.java in android studio, replace older version dependencies with newer version. There you go, everything is perfect. Just run application again.

Solving without android studio

But if you are not want to open android studio you can also solve this issue but in much longer way. Search for this to files in project RNGestureHandlerEvent.java and RNGestureHandlerStateChangeEvent.java or go to file location in your system.

That is normally, node_modules/react-native-gesture-handler/android/src/main/java/com/swmansion/gesturehandler/react/ search for above two files and replace this line

import android.support.v4.util.Pools;

# with

import androidx.core.util.Pools;

There you go, everything is perfect. Just run application again. But i am not recommending this way because this is not relevant method to solve dependencies or library version issues in android developement.

Contributing

If you find any problems, please open an issue or submit a fix as a pull request.

License

MIT License

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].