skip to Main Content

Can I view my Firebase database data in my EditText view?

I have tried using the following if statement, but the only values that it returns are the URL for my image link: reference.child("Businesses").child(firebaseUser.getUid()).addValueEventListener(new ValueEventListener() { @Override public void onDataChange(@NonNull DataSnapshot snapshot) { if (snapshot.exists()) { String businessName = snapshot.getValue().toString(); editTextBusinessName.setText(businessName);…

VIEW QUESTION

Why isn’t firebase_core package working & causing problems launching the app?

When i add the firebase_core package in pubspec.yaml and try to run the app i got this error: CMake Error at flutter/ephemeral/.plugin_symlinks/firebase_core/windows/CMakeLists.txt:71 (add_subdirectory): The source directory C:/Users/soft/Desktop/flutter_application/build/windows/extracted/firebase_cpp_sdk does not contain a CMakeLists.txt file. Exception: Unable to generate build files Exited…

VIEW QUESTION

Can’t open file? Path not found?

I built an app to upload attachments to Firebase Storage, with the URL saved in Firestore. The upload part works nicely. I also added a download button for downloading the relevant attachment. When clicking the download button, the app should…

VIEW QUESTION
Back To Top
Search