Skip to main content
Version: 0.3

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 },
onDismiss = { /* close */ }
)

more configs to come later