SuriDevs Logo

Tutorials — Page 3

Page 3 of 5 — browse earlier tutorials on Android development, Kotlin, Jetpack Compose, and Flutter.

Jetpack Navigation 3 Migration: Type-Safe Routes & Nav2
Android Jetpack Compose Navigation Kotlin Architecture

Jetpack Navigation 3 Migration: Type-Safe Routes & Nav2

A practical guide to Jetpack Navigation 3 covering type-safe routes, bottom navigation with multiple back stacks, deep link handling, shared ViewModels, and step-by-step migration from Navigation 2.

Syncing State Across Multiple Providers in Riverpod: The Cart Problem Nobody Warns You About
Flutter Riverpod State Management Dart Architecture

Syncing State Across Multiple Providers in Riverpod: The Cart Problem Nobody Warns You About

User adds item to cart from Search screen. Cart updates. User goes back. Button still shows old state. Here's how I fixed state sync across multiple Riverpod providers without turning the codebase into spaghetti.

Production-Ready Networking in Flutter with DIO - Part 3: Clean API Calls
Flutter DIO Repository Pattern Clean Architecture Dart

Production-Ready Networking in Flutter with DIO - Part 3: Clean API Calls

The final piece: BaseApiService and repository pattern. Go from scattered try-catches to clean, type-safe API calls. Complete flow diagram and production checklist included.

Flutter DIO Token Refresh: Fix the Race Condition (Part 2)
Flutter DIO Authentication Token Refresh Dart

Flutter DIO Token Refresh: Fix the Race Condition (Part 2)

Automatic token refresh that doesn't fire 5 times when 5 requests fail. Here's how to handle auth properly with secure storage, interceptors, and race condition prevention.

Flutter DIO Setup: Production Networking (Part 1)
Flutter DIO Networking API Dart

Flutter DIO Setup: Production Networking (Part 1)

Stop writing try-catch blocks everywhere. Build a networking layer that handles errors, parses responses, and doesn't embarrass you in production. Part 1 of a 3-part series covering DIO setup, configuration, and generic response handling.

MQTT in Android: Real-Time IoT with Jetpack Compose
Android MQTT IoT Kotlin Jetpack Compose

MQTT in Android: Real-Time IoT with Jetpack Compose

Building a smart home app that controls lights, sensors, and devices in real-time using MQTT and Kotlin.