summaryrefslogtreecommitdiff
path: root/library/src/main/java/moe/yuuta/flow/FlowInfo.kt
blob: d12228cf3ad3c6e8ed5a5ac30a49ba9262e3d066 (plain)
1
2
3
4
5
6
7
8
9
10
package moe.yuuta.flow;

/**
 * Stores basic info, for instance, title and subtitle for the flow. These data will
 * be auto applied when user switch to the related flow and will be reset after leaving the flow.
 */
data class FlowInfo(
        var headerConfig: HeaderConfig,
        var navigationBarConfig: NavigationBarConfig?
)