//MetaPhrase/com.github.diegoberaldin.metaphrase.core.common.ui.components/CustomTabBar
CustomTabBar
[jvm]\
@Composable
fun CustomTabBar(modifier: Modifier = Modifier, tabs: List<String> = emptyList(), current: Int? = null, onTabSelected: (Int) -> Unit? = null, rightIcon: ImageVector? = null, onRightIconClicked: (Int) -> Unit? = null)
Custom tab bar.
Return
Parameters
jvm
modifier | Modifier |
tabs | Tabs titles |
current | Current tab |
onTabSelected | On tab selected callback |
rightIcon | Right icon (e.g. close button) |
onRightIconClicked | On right icon clicked callack |