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

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

package com.squareup.workflow1.ui.modal

import com.squareup.workflow1.ui.WorkflowUiExperimentalApi

/**
 * May show a stack of [AlertScreen] over a [beneathModals].
 *
 * @param B the type of [beneathModals]
 */
@WorkflowUiExperimentalApi
public data class AlertContainerScreen(
  override val beneathModals: B,
  override val modals: List = emptyList()
) : HasModals {
  public constructor(
    baseScreen: B,
    alert: AlertScreen
  ) : this(baseScreen, listOf(alert))

  public constructor(
    baseScreen: B,
    vararg alerts: AlertScreen
  ) : this(baseScreen, alerts.toList())
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy