skip to Main Content

After installing react-native-firebase/app it's Build will failed in react-native ios – React native

After installing react-native-firebase/[email protected] with react-native-0.68.1 using use_frameworks! and remove flipperin the podfile of the project , but when i ran npx react-native run-ios it's Build failed The following build commands failed: Ld /Users/userName/Library/Developer/Xcode/DerivedData/-gvnovwrlbjvxedcquaumtvgvdgmn/Build/Products/Debug-iphonesimulator/react-native-razorpay/react_native_razorpay.framework/react_native_razorpay normal (in target 'react-native-razorpay' from project 'Pods')…

VIEW QUESTION

Read and write data Firebase

I am writing a todolist application there are two screens MainVC - table SecondVC - with two testfeeds where the user writes notes I save when I click on the button private var databaseRef = Database.database().reference() ActionButton let user =…

VIEW QUESTION

Firebase – How to show success message and catch error during flutter firestore data update

I have this function Future updateMember(Member member) async { final User? user = Auth().currentUser; final docMember = FirebaseFirestore.instance.collection('users').doc(user?.uid); member.id = docMember.id; final json = member.toJson(); final response = await docMember .update(json) .then((value) => {print("done")}) .catchError((e) => (e)); return response; }…

VIEW QUESTION
Back To Top
Search