How do I remove undeline of TabRow in Jetpack Compose?

I am tiring to remove the underline of TabRow, but did not succeed. Hier the code: @ExperimentalPagerApi @Composable fun Tabs(pagerState: PagerState) { val tabs = listOf(R.string.add, R.string.add) val scope = rememberCoroutineScope() val currentPage = pagerState.currentPage TabRow( modifier = Modifier .padding(start = 36.dp, top = 16.dp, end = 36.dp) .clip(shape = RoundedCornerShape(16.dp)), selectedTabIndex = currentPage, backgroundColor… Read More How do I remove undeline of TabRow in Jetpack Compose?