mirror of
https://github.com/bbara04/Purefin.git
synced 2026-07-24 03:36:51 +00:00
feat: auto-scroll to first page on SuggestionsSection load
This commit is contained in:
@@ -17,6 +17,7 @@ import androidx.compose.foundation.pager.rememberPagerState
|
||||
import androidx.compose.foundation.shape.CircleShape
|
||||
import androidx.compose.material3.MaterialTheme
|
||||
import androidx.compose.runtime.Composable
|
||||
import androidx.compose.runtime.LaunchedEffect
|
||||
import androidx.compose.ui.Modifier
|
||||
import androidx.compose.ui.draw.clip
|
||||
import androidx.compose.ui.unit.dp
|
||||
@@ -32,6 +33,10 @@ fun SuggestionsSection(
|
||||
|
||||
val pagerState = rememberPagerState(pageCount = { items.size })
|
||||
|
||||
LaunchedEffect(Unit) {
|
||||
pagerState.scrollToPage(0)
|
||||
}
|
||||
|
||||
Column(
|
||||
verticalArrangement = Arrangement.spacedBy(14.dp),
|
||||
modifier = modifier
|
||||
|
||||
Reference in New Issue
Block a user