How To Use Firebase As Flutter's Backend

How To Use Firebase As Flutter's Backend

4 min read · 612 words · Shared May 3, 2021 by

Article Summary: Learn how to connect Google's Firebase database to your Flutter mobile app easily.

Introduction

Whenever I work with Firebase, I always seem to run into small issues that can be very annoying (yet simple) to solve. When I tried to connect my Flutter application to a Firebase backend for one of my personal projects, I ran into some small issues that set me back some time. Because of this, I decided to write a simple and straightforward article showing you how to connect your Flutter application to a firebase backend for both IOS and Android. After this tutorial, you will be all set to add authentication, Cloud Firestore, or any other Firebase feature you might want.

Pre Reqs

To keep this tutorial short, I expect that you have the following:

  • You have Flutter installed on your machine
  • You have a Flutter project started already and are ready to connect it with Firebase

Creating a Firebase Project

Before we start working in Flutter, we need to create a Firebase project.

  1. Navigate to Firebase console
  2. Click on Add Project
  3. Enter a project name
  4. Choose if you want Google Analytics to be enabled (I recommend this). You can always enable this later on.
  5. Choose what account you want this project to be associated with
  6. Click create project

After a minute or two, your project will finish creating and you will be brought to the overview page.

Add Firebase to Android

Next, we will add Firebase to our Android version. We will need to do IOS and Android separately although the process is similar.

Firebase Console
View Full Image

·

Firebase Console

  • Click on the Android Icon from the overview page
  • Complete the Register App step.

For Android package name use the format: com.[your name or business name].[project name]. For app nickname, use whatever name you’d like.

Firebase Console
View Full Image

·

Firebase Console

Step 2

  • Download the config file and place it in the app level (in the app folder).

Firebase Console
View Full Image

·

Firebase Console

  • In the project level build.gradle, add the following:

Firebase Console
View Full Image

·

Firebase Console

  • In the app level build.gradle add the following:

Firebase Console
View Full Image

·

Firebase Console

Lastly, in the app level build.gradle file (same file as above), find the applicationId and change it to the name you chose in step 2. In my case I used com.benjamincarlson.medium_tutorial.

Firebase Console
View Full Image

·

Firebase Console

At this point we are done. Run the app with an android emulator and make sure everything works. You should see the following image below if everything works as expected.

Firebase Console
View Full Image

·

Firebase Console

Add Firebase to IOS

Like I said earlier, this is similar to what we did for Android.

Click on the IOS Icon from the overview page

Enter the IOS bundle ID. This can be found by opening your project in Xcode -> click on runner (top right) -> general tab -> Identity

Firebase Console
View Full Image

·

Firebase Console

I changed mine from com.example.mediumTutorial to com.benjamincarlson.mediumTutorial.

  • Enter an app nickname and app store ID (both optional)

  • Download the config file. Add the file in the project root by opening Xcode, right clicking on runner, and clicking “add files to runner”. You need to add the file directly through Xcode otherwise you will get an error and the app won’t run.

  • Skip the next 2 steps firebase tells you to do

  • Run the IOS app and make sure everything is working correctly

Finishing Up

The last thing you want to do is open up pubspec.yaml and add the following under dependencies:

pubspec.yaml
firebase_auth: ^0.14.0+5
cloud_firestore: ^0.12.9+4

Any other Firebase tools you want to use will be added here as well.

That’s it guys! I hope you found this article useful and that you are able to successfully connect your Flutter app to Google's Firebase!

Edit on GitHub

Related Tags

    #flutter

Related Posts

Create A Flutter Bottom Navigation Bar · July 16, 2021
How To Use The map() Function In Dart · April 28, 2021
Connect Firebase To Next.js · April 15, 2021

On This Page

Introduction

Pre Reqs

Creating a Firebase Project

Add Firebase to Android

Add Firebase to IOS

Finishing Up

View Related Posts

July 16, 2021

flutter.png

Create A Flutter Bottom Navigation Bar

April 28, 2021

dart.png

How To Use The map() Function In Dart

April 15, 2021

firebase.png

Connect Firebase To Next.js


Loading author data...

    Legal

    Terms

    Disclaimer

    Privacy Policy


    Carlson Technologies Logo© Copyright 2021 - 2024, Carlson Technologies LLC. All Rights Reserved.