skip to Main Content

Module not found: Error: Can't resolve './Firebase'

I am new to react and i have been trying to initialize firebase into my react app. import firebase from 'firebase/compat/app'; import 'firebase/compat/auth'; import 'firebase/compat/firestore'; var firebaseConfig = { apiKey: "AIzaSyCvSb1gFiUYMJA4SbsKlJvhFwJ8IFjSwkg", authDomain: "raya-feedback.firebaseapp.com", databaseURL: "https://raya-feedback-default-rtdb.europe-west1.firebasedatabase.app", projectId: "raya-feedback", storageBucket: "raya-feedback.appspot.com", messagingSenderId:…

VIEW QUESTION

Im trying to write code to get (doc id) from Firebase

Look at my database structure: and here is my code that I want to use ID in : Widget build(BuildContext context) { return SafeArea( child: InkWell( borderRadius: BorderRadius.circular(30), child: Dismissible( key: UniqueKey(), direction: DismissDirection.startToEnd, background: Container( color: Colors.red, child: Row(…

VIEW QUESTION
Back To Top
Search