File tree Expand file tree Collapse file tree
app/src/main/java/to/bitkit/ui/screens/widgets/price Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -21,6 +21,7 @@ import androidx.compose.ui.Alignment
2121import androidx.compose.ui.Modifier
2222import androidx.compose.ui.platform.testTag
2323import androidx.compose.ui.res.stringResource
24+ import androidx.compose.ui.text.style.TextAlign
2425import androidx.compose.ui.tooling.preview.Preview
2526import androidx.compose.ui.unit.dp
2627import androidx.lifecycle.compose.collectAsStateWithLifecycle
@@ -244,19 +245,19 @@ private fun WidgetCarousel(
244245 },
245246 ),
246247 color = Colors .White64 ,
248+ textAlign = TextAlign .Center ,
247249 modifier = Modifier
248250 .fillMaxWidth()
249- .testTag(" widget_size_label" ),
250- textAlign = androidx.compose.ui.text.style.TextAlign .Center ,
251+ .testTag(" widget_size_label" )
251252 )
252253
253254 VerticalSpacer (16 .dp)
254255
255256 Row (
257+ horizontalArrangement = Arrangement .Center ,
256258 modifier = Modifier
257259 .fillMaxWidth()
258- .testTag(" page_indicator" ),
259- horizontalArrangement = Arrangement .Center ,
260+ .testTag(" page_indicator" )
260261 ) {
261262 repeat(PAGE_COUNT ) { index ->
262263 Box (
You can’t perform that action at this time.
0 commit comments