How to disable pager animation of HorizontalPager
I create a page which has 4 tabs and subpages, the HorizontalPager with dragEnabled = false, then I want to disable the animation when I click the tabs for changing the pages. How can I do it? Column(modifier = Modifier.padding(bottom = 0.dp)) { HorizontalPager( state = pagerState, flingBehavior = PagerDefaults.rememberPagerFlingConfig(pagerState), verticalAlignment = Alignment.CenterVertically, horizontalAlignment =… Read More How to disable pager animation of HorizontalPager