All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.squareup.workflow1.ui.modal.HasModals.kt Maven / Gradle / Ivy

package com.squareup.workflow1.ui.modal

import com.squareup.workflow1.ui.WorkflowUiExperimentalApi

/**
 * Interface implemented by screen classes that represent a stack of
 * zero or more [modal][M] screens above a [base screen][beneathModals].
 *
 * Use of this interface allows platform specific containers to share base classes,
 * like `ModalContainer` in the `workflow-ui:core-android` module.
 */
@WorkflowUiExperimentalApi
public interface HasModals {
  public val beneathModals: B
  public val modals: List
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy