Top 8 Pro Tips for Flutter Web Apps using FirebaseMay 25, 2020#flutter#flutter-web#dart#firebase8 top tips that will save you time in your Flutter web projects.
Going Full Stack with Flutter Web & Cloud Functions: A Case StudyMay 18, 2020#flutter#flutter-web#cloud-functions#firebaseCase study showing how I have built a backend REST API and Admin Dashboard with Cloud Functions and Flutter web.
RxDart by example: combineLatest and data modeling with FirestoreMay 4, 2020#flutter#dart#rxdart#firestore#firebaseIn-depth tutorial explaning combineLatest and data modeling with movie favourite example Flutter app.
Take Home Project for Flutter Job Interview - Firebase versionFeb 17, 20206 min read#flutter#dart#firebase#interview#careerTake-home projects are a task often given to candidates during the interview process. This article shows a hypothetical assignment that I would give to candidates interviewing for a Flutter developer role.
Starter Architecture for Flutter & Firebase Apps using RiverpodUpdated Dec 17, 202014 min read#flutter#dart#firebase#architecture#provider#design-patternsIn this tutorial I give a detailed overview of a production-ready architecture that I've fine-tuned over the last two years. You can use the included starter project as the foundation for your Flutter & Firebase apps.
Apple Sign In with Flutter & Firebase AuthenticationUpdated Nov 23, 20207 min read#flutter#firebase#authenticationHow to implement Apple Sign In with Flutter & Firebase Authentication (from scratch), and give your iOS users a convenient way of signing into your app.
Design, Develop, Deliver: My Favorite Tools for Building Flutter AppsOct 7, 2019#flutter#dart#UI-design#firebase#CIOverview of the tools I use in my Flutter app development workflow. Including Sketch, Supernova, VS Code, GitUp, GitHub, Firebase, Codemagic.
Flutter & Firebase: Authentication Service with Provider & ValueNotifierJun 18, 2019#flutter#dart#provider#firebase#authenticationCode walkthrough for the authentication code in my Flutter & Firebase reference authentication demo on GitHub.
Flutter & Firebase: Reference Authentication DemoJun 14, 2019#flutter#dart#firebase#authenticationIntroducing my reference authentication demo with Flutter & Firebase on GitHub, supporting multiple authentication methods and best coding practices.
Flutter & Firebase Authentication with Streams and StreamBuilderMar 7, 2019#flutter#dart#streams#firebase#authenticationContinuation on my video series on how to build a login flow with Firebase. It shows how to use StreamBuilder with the onAuthStateChanged stream to simplify authentication state logic in Flutter apps.
Flutter & Firebase Auth 06 - Home page + Sign out + Complete and review sign in flowApr 28, 2018#flutter#dart#firebase#authenticationLogin and registration flow with Firebase. Part 6 shows how to create a home page and complete the sign out flow.
Flutter & Firebase Auth 05 - Switch between login & home page + State initializationApr 28, 2018#flutter#dart#firebase#authenticationLogin and registration flow with Firebase. Part 5 shows how to add a root widget and control what UI to show depending on authentication state.
Flutter & Firebase Auth 04 - Overview of root & home page + Refactor Firebase authentication codeApr 28, 2018#flutter#dart#firebase#authenticationLogin and registration flow with Firebase. Part 4 shows how to redirect user to a welcome screen after logging in. Also how to refactor the authentication code into a separate reusable class.
Flutter & Firebase Auth 03 - Add Firebase registration form + State managementApr 22, 2018#flutter#dart#firebase#authenticationLogin and registration flow with Firebase. Part 3 shows how to sign in with Firebase authentication, add the registration flow, write asynchronous code with async/await, and handle errors.
Flutter & Firebase Auth 02 - Create, validate and save a login form + Firebase iOS auth integrationApr 22, 2018#flutter#dart#firebase#authenticationLogin and registration flow with Firebase. Part 2 shows how to build an email and password form with validation, and how to add Firebase to the project (iOS setup included).
Flutter & Firebase Auth 01 - Intro + Create a new app + Stateless & stateful widgetsApr 21, 2018#flutter#dart#firebase#authenticationLogin and registration flow with Firebase. Part 1 includes an introduction to Flutter, a preview of the login and registration flow, and the initial project setup.
Flutter: Designing an Authentication API with Service ClassesJun 17, 20196 min read#flutter#dart#firebase#authentication#architectureLet's see how use service classes to encapsulate 3rd party libraries and APIs, and decouple them from the rest of the application. We will use authentication as a concrete example of this.
Flutter: Global Access vs Scoped Access with ProviderJun 10, 20195 min read#flutter#dart#dependency-injection#provider#firebase#authentication#scoped-accessThis article shows how to use scoped access with Provider when using service classes in our Flutter apps.
Super Simple Authentication Flow with Flutter & FirebaseJun 3, 20195 min read#flutter#dart#firebase#authenticationIn this article we implement a simple authentication flow in Flutter, in less than 100 lines of code.
How to speed-up Cloud Firestore Xcode builds on your Flutter appsJun 19, 2020#flutter#firebase#devopsHow to use the precompiled Firestore iOS SDKs to speed-up Xcode builds on your Flutter apps.
Hide your Firebase config with .gitignore in Flutter web projectsApr 13, 2020#flutter#dart#firebase#web#gitA useful tip to hide your Firebase config from git in your Flutter web projects.