From 12f95a8a865a5ef9965ff91427eb54b919c6e308 Mon Sep 17 00:00:00 2001 From: Saurabh Mhatre Date: Sun, 27 Nov 2016 12:16:45 +0530 Subject: [PATCH 1/3] Create 2016-11-27-simple-to-do-app-using-reactnative-firebase-and-native-base --- ...o-do-app-using-reactnative-firebase-and-native-base | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 _posts/2016-11-27-simple-to-do-app-using-reactnative-firebase-and-native-base diff --git a/_posts/2016-11-27-simple-to-do-app-using-reactnative-firebase-and-native-base b/_posts/2016-11-27-simple-to-do-app-using-reactnative-firebase-and-native-base new file mode 100644 index 0000000..929217d --- /dev/null +++ b/_posts/2016-11-27-simple-to-do-app-using-reactnative-firebase-and-native-base @@ -0,0 +1,10 @@ +--- +layout: post +title: "Building a test suite in React JS" +excerpt_separator: +author: Jack Callister +date: 2014-12-08 18:59 +published: false +categories: React +--- + From c38138a39211bd55d83f39fa48cbd6cc5beca8e8 Mon Sep 17 00:00:00 2001 From: Saurabh Mhatre Date: Sun, 27 Nov 2016 12:50:27 +0530 Subject: [PATCH 2/3] first commit Created a new post for creating simple Todo app using reactnative,firebase and nativebase --- ...using-reactnative-firebase-and-native-base | 25 +++++++++++++++---- 1 file changed, 20 insertions(+), 5 deletions(-) diff --git a/_posts/2016-11-27-simple-to-do-app-using-reactnative-firebase-and-native-base b/_posts/2016-11-27-simple-to-do-app-using-reactnative-firebase-and-native-base index 929217d..ba7c354 100644 --- a/_posts/2016-11-27-simple-to-do-app-using-reactnative-firebase-and-native-base +++ b/_posts/2016-11-27-simple-to-do-app-using-reactnative-firebase-and-native-base @@ -1,10 +1,25 @@ --- layout: post -title: "Building a test suite in React JS" +title: "Simple Todo app using reactnative,firebase and nativebase" excerpt_separator: -author: Jack Callister -date: 2014-12-08 18:59 -published: false -categories: React +author: Saurabh Mhatre +date: 2016-11-27 12:59 +published: true +categories: react --- +Reactnative is increasing being used in the development of JS native apps.With the release of firebase it has become quite easier for +developers can have easier integration of authentication,users and data into there applications.Nativebase is set of UI components that +you can use in your reactnative applications. +The purpose of this tutorial is to get you acquainted with the basics of using reactnative with firebase and using nativebase to +build ui elements of mobile application. +This is two part series to create a simple todo app in reactnative using firebase. +In the first part we are going to create simple email based authentication for the user to Log in or Sign up. +We are going to learn about using email authentication method of firebase to authenticate the user and nativebase to create ui of the login form. +The link to the first part of the tutorial is:[here](https://medium.com/@smhatre59/simple-login-system-using-reactnative-firebase-and-nativestack-1e54b70869c4#.ue5fa0b58) + +In the second part we are going to create a task manager in which we can add a new task or remove completed ones. +We will use real time database functionality provided by firebase to store tasks of users and retrieve them from remote database. +The link to the second part of the tutorial can be found [here](https://medium.com/@smhatre59/simple-todo-app-using-reactnative-firebase-and-nativebase-560b818b0d62#.589cfnb3h) + + From ac572321dac0f1edcc230a7f20f680ad5be4f7c1 Mon Sep 17 00:00:00 2001 From: Saurabh Mhatre Date: Sun, 27 Nov 2016 12:56:13 +0530 Subject: [PATCH 3/3] second commit --- ...ple-to-do-app-using-reactnative-firebase-and-native-base | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/_posts/2016-11-27-simple-to-do-app-using-reactnative-firebase-and-native-base b/_posts/2016-11-27-simple-to-do-app-using-reactnative-firebase-and-native-base index ba7c354..bbe0a60 100644 --- a/_posts/2016-11-27-simple-to-do-app-using-reactnative-firebase-and-native-base +++ b/_posts/2016-11-27-simple-to-do-app-using-reactnative-firebase-and-native-base @@ -8,9 +8,9 @@ published: true categories: react --- -Reactnative is increasing being used in the development of JS native apps.With the release of firebase it has become quite easier for -developers can have easier integration of authentication,users and data into there applications.Nativebase is set of UI components that -you can use in your reactnative applications. +Reactnative is increasing being used in the development of JS native apps.Firebase allows us to effortlessly integrate authentication of users, +store database entries and scale up based on our project needs. +Nativebase is set of UI components that you can use in your reactnative applications. The purpose of this tutorial is to get you acquainted with the basics of using reactnative with firebase and using nativebase to build ui elements of mobile application. This is two part series to create a simple todo app in reactnative using firebase.