Skip to content

arkivanov/Decompose

Folders and files

NameName
Last commit message
Last commit date

Latest commit

60bcaed · Mar 8, 2025
Sep 8, 2024
Oct 13, 2024
Feb 28, 2025
Feb 28, 2025
Jul 8, 2024
Jan 2, 2025
Jan 2, 2025
Feb 24, 2025
Jan 2, 2025
Dec 8, 2024
Dec 12, 2023
May 15, 2021
Jun 1, 2024
Aug 18, 2020
Mar 8, 2025
Feb 26, 2025
Feb 25, 2025
Jun 1, 2024
Jan 2, 2025
Jan 2, 2025
Dec 8, 2024
Jan 2, 2025

Repository files navigation



License Twitter URL


Decompose is a Kotlin Multiplatform library for breaking down your code into tree-structured lifecycle-aware business logic components (aka BLoC), with routing functionality and pluggable UI (Jetpack/Multiplatform Compose, Android Views, SwiftUI, Kotlin/React, etc.).

Please see the project website for documentation and APIs.

Should you have any questions or ideas - there is Discussions section. Also welcome to the Kotlin Slack channel - #decompose!

Why Decompose?

  • Decompose breaks the code down into small and independent components and organizes them into trees. Each parent component is only aware of its immediate children.
  • Decompose draws clear boundaries between UI and non-UI code, which gives the following benefits:
    • Better separation of concerns
    • Pluggable platform-specific UI (Compose, SwiftUI, Kotlin/React, etc.)
    • Business logic code is testable with pure multiplatform unit tests
  • Navigation state is fully exposed - plug any UI you want, animate as you like using your favourite UI framework's API or use predefined API.
  • Navigation is a pure function from the old state to a new one - navigate without limits.
  • Proper dependency injection (DI) and inversion of control (IoC) via constructor, including but not limited to type-safe arguments.
  • Shared navigation logic
  • Lifecycle-aware components
  • Components in the back stack are not destroyed, they continue working in background without UI
  • State preservation (automatically on Android, manually on all other targets via kotlinx-serialization)
  • Instances retaining (aka ViewModels) over configuration changes (mostly useful in Android)

Meme time!

Setup

Please check the Installation section of the documentation.

Supported platforms

In general, Decompose supports the following targets: android, jvm, ios, watchos, tvos, macos, wasmJs, js. However, some modules do not support all targets or the support depends on the Decompose version. Please see the Installation docs for details.

Overview

Here are some key concepts of the library, more details can be found in the documentation.

  • Component - every component represents a piece of logic with its own lifecycle, the UI is optional and is plugged externally
  • ComponentContext - every component has its own [ComponentContext], which makes components lifecycle-aware and allows state preservation, instances retaining (aka AndroidX ViewModel) and back button handling
  • Child Stack - enables navigation between child components, nested navigation is also supported
  • Child Slot - allows only one child component at a time, or none
  • Child Pages - a list of child components with one selected component (e.g. pager-like navigation)
  • Generic Navigation - provides a way to create your own custom navigation model, when none of the predefined models fit your needs
  • Lifecycle - provides a way to listen for lifecycle events in components
  • StateKeeper - makes it possible to preserve state or data in a component when it gets destroyed
  • InstanceKeeper - retains instances in your components (similar to AndroidX ViewModel)
  • BackPressedHandler - provides a way to handle and intercept back button presses

Component hierarchy

Pluggable UI hierarchy

Typical component structure

Quick start

Please refer to the Quick start section of the docs.

Samples

Check out the Samples section of the docs for a full description of each sample.

Template

Check out the template repository which may be used to kick-start a project for you.

"Used by" list

Checkout a voluntary list of projects/companies using Decompose: #366. Feel free to add your project!

Articles

Author

Twitter: @arkann1985

If you like this project you can always Buy Me A Coffee ;-)