Closed Utkarsh0911 closed 4 years ago
I found a few problems with this issue:
Your initialization code and the config file look fine to me, but I'm not sure if that is the problem you are referring to because you just pasted code without any instruction. For us to help you debug, can you please provides more detail, e.g. where the error occurs in your code, what you are trying to do before the error occurs ,etc..
Hey @utkarsh0911. We need more information to resolve this issue but there hasn't been an update in 5 weekdays. I'm marking the issue as stale and if there are no new updates in the next 5 days I will close it automatically.
If you have more information that will help us get to the bottom of this, just add a comment!
Hey @utkarsh0911. We need more information to resolve this issue but there hasn't been an update in 5 weekdays. I'm marking the issue as stale and if there are no new updates in the next 5 days I will close it automatically.
If you have more information that will help us get to the bottom of this, just add a comment!
Since there haven't been any recent updates here, I am going to close this issue.
@utkarsh0911 if you're still experiencing this problem and want to continue the discussion just leave a comment here and we are happy to re-open this.
import React from 'react'; import { StyleSheet, Text, View } from 'react-native'; import { TextInput } from 'react-native-paper';
import { Button } from 'react-native-paper';
import * as firebase from 'firebase'
if(!firebase.apps.length) { firebase.initializeApp({
}) } export default function App() {
console.log("hello") state={ text:'' } return (
); }
const styles = StyleSheet.create({ container: { flex: 1, backgroundColor: '#fff', alignItems: 'center', justifyContent: 'center', }, });