Day 22: React Native
Today marks 22 days out of 30 days of my #ReactNativeIn30Days series. In today’s post, I will bring you up to speed with what I’ve been able to do so far.
Bug Time!!! 😀😀
In yesterday’s post(day 21), I made mention of some challenges I had with firebase in creating a user in a user’s collection once a user signs up with the email and password sign-in method. Well, I was able to resolve the issue.
What was the problem exactly?
The problem had to do with how I imported firebase. I was accessing firestore from import firebase from ‘firebase'
. The issue here is that the firebase core library does not include the firestore library. So to fix this I had to import 'firebase/firestore'
Wrap up:
Today, I talked about how I went about resolving an issue I had with firebase. I will continue to create the necessary collection needed to complement the backend logic in the subsequent days.
Github Repo: https://github.com/victorbruce/react-native30