Food Delivery App: Adding Backend(Firebase)

 

Introduction

Top Features of Firebase

Create a Firebase project

Firebase

Firebase is Google's mobile platform that helps you quickly develop high-quality apps and grow your business.

firebase.google.com


Click on Get started

Image for post

Image for post


Configure your app to use Firebase

Configure an Android app


Image for post

Image for post

Project-level build.gradle (<project>/build.gradle):buildscript {
dependencies {
// Add this line
classpath 'com.google.gms:google-services:4.2.0'
}
}
App-level build.gradle (<project>/<app-module>/build.gradle):dependencies {
// Add this line
implementation 'com.google.firebase:firebase-core:17.0.0'
}
...
// Add to the bottom of the file
apply plugin: 'com.google.gms.google-services'

Configure an iOS app


Image for post

Image for post

Add FlutterFire plugins 🔥

Available FlutterFire plugins

Steps to add FlutterFire plugins to your app

 

Comments

Popular posts from this blog

Flutter: Exploring more widgets

Food Delivery App 5 - Firebase Storage for Profile Picture

Flutter: Everything is a widget