Android Jetpack Compose Side Effects Explained
Deep dive into Compose side effects — LaunchedEffect, rememberCoroutineScope, DisposableEffect, SideEffect, derivedStateOf, snapshotFlow, and more — with practical examples and interview insights.
Deep dive into Compose side effects — LaunchedEffect, rememberCoroutineScope, DisposableEffect, SideEffect, derivedStateOf, snapshotFlow, and more — with practical examples and interview insights.
Quick reference for Jetpack Compose side effect APIs — LaunchedEffect, DisposableEffect, SideEffect, derivedStateOf, snapshotFlow, and more — for interview preparation.
Master the fundamental differences between the Present Continuous and the Present Simple tenses. Learn forms, rules, and how to use state verbs correctly.
Overview: A summary of the standard iOS project file structure, key application files, and common architectural patterns used in modern iOS development. 🧭 High-Level Project Structure A well-o...
Deep dive into the three render phases of Jetpack Compose — Composition, Layout, and Drawing — and how understanding them unlocks better performance.
Quick reference for Jetpack Compose's three render phases — Composition, Layout, and Drawing — for interview preparation.
Source: Android Docs — Tasks and the back stack 📌 Tasks & the Back Stack Before diving into launch modes, it’s important to understand tasks and the back stack. A task is a collection of ...
Hi there, I’m Phat, an Associate Android Engineer based in Ho Chi Minh City.
Sources: Activity Lifecycle · Fragment Lifecycle 🔵 Activity Lifecycle An Activity has 6 core lifecycle callbacks invoked by the system as it transitions between states. Lifecycle Flow onCrea...
The Presentation Layer is where your app meets the user — it handles UI rendering, user interactions, and state management. Choosing the right architectural pattern for this layer has a significant...