Codelabs & workshops
The Flutter codelabs provide a guided, hands-on coding experience. Some codelabs run in DartPad—no downloads required!
Flutter workshops are similar to the codelabs, but are instructor led and always use DartPad. The provided workshop link takes you to the relevant YouTube video, which tells you where to find the associated DartPad link.
Good for beginners
If you’re new to Flutter, we recommend starting with one of the following codelabs:
-
Your first Flutter app
Create a simple app that automatically generates cool-sounding names, such as “newstay”, “lightstream”, “mainbrake”, or “graypine”. This app is responsive and runs on mobile, desktop, and web. (This also replaces the previous “write your first Flutter app” for mobile, part 1 and part 2 codelabs.) -
Write your first Flutter app on the web
Implement a simple web app in DartPad (no downloads required!) that displays a sign-in screen containing three text fields. As the user fills out the fields, a progress bar animates along the top of the sign-in area. This codelab is written specifically for the web, but if you have downloaded and configured Android and iOS tooling, the completed app works on Android and iOS devices, as well.
Next steps
-
Building scrolling experiences in Flutter (workshop)
Start with an app that performs simple, straightforward scrolling and enhance it to create fancy and custom scrolling effects by using slivers. -
Dart null safety in Action (workshop)
An instructor-led workshop based on the Null safety codelab on the dart.dev site. -
How to manage application states using inherited widgets (workshop)
Learn how to manage the state of your app’s data by using theInheritedWidget
class, one of the low-level state management classes provided by Flutter.
Designing a Flutter UI
Learn about Material Design and basic Flutter concepts, like layout and animations:
-
Basic Flutter layout concepts
Use DartPad in a browser (no downloads required!) to learn the basics of creating a Flutter layout. -
How to debug layout issues with the Flutter Inspector
Not an official codelab, but step-by-step instructions on how to debug common layout problems using the Flutter Inspector and Layout Explorer. -
Implicit animations
Use DartPad (no downloads required!) to learn how to use implicit animations to add motion and create visual effects for the widgets in your UI. -
Building Beautiful Transitions with Material Motion for Flutter
Learn how to use the Material animations package to add pre-built transitions to a Material app called Reply. -
Take your Flutter app from boring to beautiful
Learn how to use some of the features in Material 3 to make your app more beautiful and more responsive. -
MDC-101 Flutter: Material Components (MDC) Basics
Learn the basics of using Material Components by building a simple app with core components. The four MDC codelabs guide you through building an e-commerce app called Shrine. You’ll start by building a login page using several of MDC Flutter’s components. -
MDC-102 Flutter: Material Structure and Layout
Learn how to use Material for structure and layout in Flutter. Continue building the e-commerce app, introduced in MDC-101, by adding navigation, structure, and data. -
MDC-103 Flutter: Material Theming with Color, Shape, Elevation, and Type
Discover how Material Components for Flutter make it easy to differentiate your product, and express your brand through design. Continue building your e-commerce app by adding a home screen that displays products. -
MDC-104 Flutter: Material Advanced Components
Improve your design and learn to use our advanced component backdrop menu. Finish your e-commerce app by adding a backdrop with a menu that filters products by the selected category. -
Adaptive Apps in Flutter
Learn how to build a Flutter app that adapts to the platform that it’s running on, be that Android, iOS, the web, Windows, macOS, or Linux.
Using Flutter with…
Learn how to use Flutter with other technologies.
Monetizing Flutter
-
Adding AdMob Ads to a Flutter app
Learn how to add an AdMob banner, an interstitial ad, and a rewarded ad to an app called Awesome Drawing Quiz, a game that lets players guess the name of the drawing. -
Adding an AdMob banner and native inline ads to a Flutter app
Learn how to implement inline banner and native ads to a travel booking app that lists possible flight destinations. -
Adding in-app purchases to your Flutter app
Extend a simple gaming app that uses the Dash mascot as currency to offer three types of in-app purchases: consumable, non-consumable, and subscription.
Flutter and Firebase
-
Add a user authentication flow to a Flutter app using FirebaseUI
Learn how to add Firebase authentication to a Flutter app with only a few lines of code. -
Get to know Firebase for Flutter (workshop)
An instructor-led version of our popular “Get to know Firebase for Flutter” codelab (listed below). -
Get to know Firebase for Flutter
Build an event RSVP and guestbook chat app on both Android and iOS using Flutter, authenticating users with Firebase Authentication, and sync data using Cloud Firestore. -
Local development for your Flutter apps using the Firebase Emulator Suite
Learn how to use the Firebase Emulator Suite when developing with Flutter. You will also learn to use the Auth and Firestore emulators.
Flutter and TensorFlow
-
Create a custom text-classification model with TensorFlow Lite Model Maker
-
Create a Flutter app to classify texts with TensorFlow
Learn how to run a text-classification inference from a Flutter app with TensorFlow Serving through REST and gRPC. -
Train a comment-spam detection model with TensorFlow Lite Model Maker
Learn how to install the TensorFlow Lite Model Maker with Colab, How to use a data loader, and how to build a model.
Flutter and other technologies
-
Adding Google Maps to a Flutter app
Display a Google map in an app, retrieve data from a web service, and display the data as markers on the map. -
Adding WebView to your Flutter app
With the WebView Flutter plugin you can add a WebView widget to your Android or iOS Flutter app. -
Build voice bots for mobile with Dialogflow and Flutter (workshop)
An instructor-led version of the Dialogflow and Flutter codelab (listed below). -
Build voice bots for Android with Dialogflow and Flutter
Learn how to build a mobile FAQ bot that can answer most common questions about the tool Dialogflow. End users can interact with the text interface or stream a voice interaction via the built-in microphone of a mobile device. -
Building a game with Flutter and Flame
NEW Learn how to create a platform game (featuring Dash or Sparky), using the Flame package. -
Using FFI in a Flutter plugin
NEW Learn how to use Dart’s FFI (foreign function interface) library, ffigen, allowing you to leverage existing native libraries that provide a C interface.
Testing
Learn how to test your Flutter application.
-
How to test a Flutter app
Start with a simple app that manages state with the Provider package. Unit test the provider package. Write widget tests for two of the widgets. Use Flutter Driver to create an integration test.
Writing platform-specific code
Learn how to write code that’s targeted for specific platforms, like iOS, Android, desktop, or the web.
-
Building a Cupertino app with Flutter
Build a version of the Shrine shopping app (used in the Material Design codelabs) using the Cupertino package to create an iOS style look and feel. Create multiple tabs and navigate between them. Use the provider package to manage state between screens. -
How to write a Flutter plugin
Learn how to write a plugin by creating a music plugin for iOS and Android that processes audio on the host platform. Then make an example app that uses your plugin to make a music keyboard. -
Using a plugin with a Flutter web app
Finish an app that reports the number of stars on a GitHub repository. use Dart DevTools to do some simple debugging, and Host your app on Firebase and, finally, use a Flutter plugin to launch the app and open the hosted privacy policy. -
Write a Flutter desktop application
Build a Flutter desktop app (Windows, Linux, or macOS) that accesses GitHub APIs to retrieve your repositories, assigned issues, and pull requests. As part of this task, create and use plugins to interact with native APIs and desktop applications, and use code generation to build type-safe client libraries for GitHub’s APIs.
Other resources
For Dart-specific codelabs, see the codelabs page on the Dart site.
We also recommend the following online class: