Short, applied courses with a verifiable certificate. Search for a topic, or narrow by category, level, duration and price.
Learn to use native device capabilities from a Flutter app in Dart — permissions, camera and image picker, geolocation, sensors, local notifications, sharing and files. You will finish able to request access safely, read real hardware data, and handle permission denials gracefully so your features degrade instead of crashing.
Build a complete testing skill for Flutter — unit tests for logic, widget tests for UI, mocktail for dependencies, plus golden and integration tests. You finish able to test apps with confidence, catching regressions before they reach users and shaping UI test-first.
Build a polished, adaptive Flutter UI that looks right on any screen. You will centralise colour and type in ThemeData, support dark mode, factory reusable styles, and respond to size with MediaQuery and LayoutBuilder so one codebase feels native on phones, tablets and foldables.
Handle state and user interaction in Flutter — use setState and the widget lifecycle to make UIs respond to taps, gestures and text input. Learn to wire controllers, rebuild efficiently, pass data down and lift state up, and tell ephemeral state from app state.
Learn to manage Flutter app state cleanly with the Provider package: model your state in ChangeNotifier classes, expose it with ChangeNotifierProvider, and rebuild only the widgets that care using Consumer and context.watch/read. You will finish able to separate UI from logic and wire up a real shopping-cart feature that scales beyond setState.
Move beyond setState and structure state for larger Flutter apps using two production-grade approaches. You will build Riverpod providers and notifiers, implement the Bloc/Cubit pattern with typed events and states, decide which fits a given codebase, and test all of it in isolation.
Add real engagement and background features to a Flutter app — local and push notifications, Firebase Cloud Messaging, correct handling of foreground, background and terminated states, deep-linking from a tapped notification, and periodic background tasks with WorkManager. You finish able to wire notifications end to end and run work while the app is closed.
Take a finished Flutter app all the way to both stores — icons, splash screens and versioning, signed Android app bundles and iOS archives, polished listings, and a clean submission that survives review. You walk away able to ship an app to the App Store and Google Play on your own and manage updates and hotfixes afterwards.
Learn to diagnose and optimise Flutter app performance using DevTools, the widget inspector, the performance overlay and rebuild profiling. You will hunt down jank, apply const constructors and RepaintBoundary correctly, and shrink both memory and app size — so you can honestly own the duty of making a Flutter app fast.
Build the job-ready capability of consuming REST APIs inside a Flutter app. You will make GET, POST, PUT and DELETE calls with the http and dio packages, parse JSON into typed Dart model classes, render results with FutureBuilder, and handle loading, errors, auth tokens and timeouts like a professional.
Learn to move users between screens in a Flutter app with confidence — from the Navigator stack and named routes to the modern go_router package. You will walk away able to build multi-screen apps that pass data forward, return results, use bottom-tab navigation with nested stacks, and open to the right screen from a deep link.
Bridge Flutter to native code with confidence. You will learn when native integration is genuinely needed, how MethodChannel carries calls between Dart and Kotlin/Swift, how to return results and errors safely, and how to package it all as a reusable platform plugin.