Mark
09/13/2024, 7:09 AMModifier.pullToRefreshIndicator
so I just passed a non-default indicator instead (to achieve the desired color) and it worked:
indicator = {
Indicator(
modifier = Modifier.align(Alignment.TopCenter),
isRefreshing = screenModel.isRefreshing,
state = pullToRefreshState,
containerColor = MaterialTheme.colorScheme.tertiary,
color = MaterialTheme.colorScheme.onTertiary,
)
},
The default container color of the indicator was grey for my theme. Does that indicate (no pun intended) that I have not properly set up my theme?