Skip to main content
Version: Next 🚧

UI Configuration

FedoSlots​

FedoSlots is a data class that controls UI elements

data class FedoSlots(
val backButtonIcon: (@Composable () -> Unit)? = DEFAULT.backButtonIcon
)
PropertyDefaultDescription
backButtonIconback iconSet AppBar IconButton icon. Pass null to remove it

How to use it​

FeedbacksScreen(
// ...
config = {
backButtonIcon = null
}
)

more configs to come later