Skip to content

Samples

Multi-Feature Sample App

This sample demonstrates the following features:

  • Nested reusable components
  • Bottom navigation
  • Nested navigation
  • Various navigation models: Child Stack, Child Slot, Child Pages, Generic Navigation
  • State preservation (using StateKeeper)
  • Retaining instances (using InstanceKeeper)
  • Pluggable UI (Android Views, Compose, SwiftUI, Kotlin/React)
  • Play Feature Delivery for Android
  • Tests, including Compose UI tests

Please note that Gradle files included in this sample project are not supposed to be used as a reference. They share the configuration with the reset of the library, which simplifies the maintenance a lot. Please refer to the KMP documentation for information on configuring a KMP project. You can also check other sample projects described below.

Content:

  • shared - this is a shared module that contains the following components:
    • Root - the root (top-most) component, it displays the bottom navigation bar and the currently selected tab.
    • Counters - the Counters tab, contains a stack of CounterComponent.
      • Counter - contains CounterComponent, it just increments the counter every 250 ms. It starts counting once created and stops when destroyed. So CounterComponent continues counting while in the back stack, unless recreated. It uses the InstanceKeeper, so counting continues after Android configuration changes. The StateKeeper is used to preserve the state when the process is recreated on Android.
    • Cards - the (draggable) Cards tab, contains a stack of [Card] components that can be dragged and thrown to the back of the stack. The top component is resumed and running, and components in the back stack are stopped. This sample demonstrates how the navigation can be controlled by gestures.
      • Card - contains CardComponent - a draggable card with some text information.
    • MultiPane - the Multi-Pane tab, it displays ArticleListComponent and ArticleDetailsComponent components either in a stack (one on top of another) or side by side. Please note that this sample is for advanced single-pane/multi-pane navigation and layout, for generic master-detail navigation please refer to the Sample Todo List App described below.
    • DynamicFeatures - the Dynamic Features tab, it demonstrates the usage of Play Feature Delivery on Android, while using classic integration on other platforms. There are two simple feature components - Feature1 and Feature2 - they are located in separate modules described below.
      • DynamicFeature - a helper component responsible for loading dynamic feature components.
    • CustomNavigation - the Custom Navigation tab that demonstrates the usage of the Generic Navigation model.
    • Pages - the Pages tab that demonstrates the usage of the Child Pages navigation model.
  • compose - this module contains Compose UI.
  • dynamic-features/api - this module contains only API for dynamic feature components.
  • dynamic-features/compose-api - this module contains only Compose API for dynamic feature components.
  • dynamic-features/feature1Impl - contains the implementation of Feature1 dynamic feature component. On Android it depends on android-app module and is used via reflection. On all other targets, the shared module directly depends on this module and no reflection is used.
  • dynamic-features/feature2Impl - contains the implementation of Feature2 dynamic feature component. On Android it depends on android-app module and is used via reflection. On all other targets, the shared module directly depends on this module and no reflection is used.
  • Android sample app
  • Desktop sample app
  • iOS sample app
  • Web (JS) sample app
  • Tests

Warning

The Multi-Pane sample is only for advanced single-pane/multi-pane navigation and layout. For generic master-detail navigation please refer to the Sample Todo List App described below.

Component Hierarchy

Counters Screenshots

Multi-Pane Screenshots

Sample Todo App

Simple todo application with a list and detail page that shares UI between Android and desktop with Compose Multiplatform and SwiftUI for iOS. The following libraries are used in this sample:

TodoAppDecomposeMviKotlin

Decompose-Dagger Sample

A sample Android project demonstrating the use of Decompose library together with Dagger DI framework.

decompose-dagger-sample

Sample Greetings App

Sample Greetings Repository