SimpleStep

open class SimpleStep(data: SimpleStepData) : Step

Constructors

Link copied to clipboard
constructor(data: SimpleStepData)

Properties

Link copied to clipboard
open val backButtonOverride: () -> Unit? = null
Link copied to clipboard

Bundle object used to share information between Steps.

Link copied to clipboard
open val contentSectionCls: KClass<out Section>? = null
Link copied to clipboard
Link copied to clipboard
open override val footerSectionCls: KClass<out Section>?
Link copied to clipboard
open override val headerSectionCls: KClass<out Section>?
Link copied to clipboard

Functions

Link copied to clipboard
open fun canGoBack(): Boolean
Link copied to clipboard
open fun getMenuResource(): Int

Used to provide the menu resource that will be displayed in the toolbar for this step. By default, no menu is displayed.

Link copied to clipboard
open override fun onCreate(activity: Activity, header: Section?, content: Section?, footer: Section?)

Base Lifecycle onCreate method called by the StepFragment

Link copied to clipboard
open fun onDestroy()

Base Lifecycle onDestroyed method called by the StepFragment

Link copied to clipboard
open fun onFragmentCreated(fragment: Fragment)

Base Lifecycle onFragmentCreated method called by the StepFragment

Link copied to clipboard

Called when an item was selected.

Link copied to clipboard
open fun onPause()

Base Lifecycle onPause method called by the StepFragment

Link copied to clipboard
open fun onRequestPermissionsResult(requestCode: Int, permissions: Array<out String>, grantResults: IntArray)
Link copied to clipboard
open fun onResume()

Base Lifecycle onResume method called by the StepFragment

Link copied to clipboard
open override fun toString(): String