Skip to content

Commit 4ab211b

Browse files
Remove useless small progress indicator
1 parent a915a8d commit 4ab211b

File tree

3 files changed

+36
-23
lines changed

3 files changed

+36
-23
lines changed

app/src/main/kotlin/app/fyreplace/fyreplace/ui/views/SmallCircularProgressIndicator.kt

-20
This file was deleted.

app/src/main/kotlin/app/fyreplace/fyreplace/ui/views/account/SubmitOrCancel.kt

+25-3
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,11 @@ import androidx.compose.animation.shrinkVertically
88
import androidx.compose.foundation.layout.Box
99
import androidx.compose.foundation.layout.Column
1010
import androidx.compose.foundation.layout.padding
11+
import androidx.compose.foundation.layout.size
1112
import androidx.compose.material3.Button
13+
import androidx.compose.material3.CircularProgressIndicator
1214
import androidx.compose.material3.FilledTonalButton
15+
import androidx.compose.material3.ProgressIndicatorDefaults
1316
import androidx.compose.material3.Text
1417
import androidx.compose.runtime.Composable
1518
import androidx.compose.ui.Alignment
@@ -18,8 +21,8 @@ import androidx.compose.ui.graphics.Color
1821
import androidx.compose.ui.res.dimensionResource
1922
import androidx.compose.ui.res.stringResource
2023
import androidx.compose.ui.tooling.preview.Preview
24+
import androidx.compose.ui.unit.dp
2125
import app.fyreplace.fyreplace.R
22-
import app.fyreplace.fyreplace.ui.views.SmallCircularProgressIndicator
2326

2427
@Composable
2528
fun SubmitOrCancel(
@@ -36,7 +39,7 @@ fun SubmitOrCancel(
3639
modifier = modifier
3740
) {
3841
Button(
39-
enabled = canSubmit,
42+
enabled = canSubmit && !isLoading,
4043
onClick = onSubmit
4144
) {
4245
Box {
@@ -47,7 +50,12 @@ fun SubmitOrCancel(
4750
)
4851

4952
if (isLoading) {
50-
SmallCircularProgressIndicator(modifier = Modifier.align(Alignment.Center))
53+
CircularProgressIndicator(
54+
strokeWidth = ProgressIndicatorDefaults.CircularStrokeWidth / 2,
55+
modifier = Modifier
56+
.size(24.dp)
57+
.align(Alignment.Center)
58+
)
5159
}
5260
}
5361
}
@@ -80,3 +88,17 @@ fun SubmitOrCancelPreview() {
8088
modifier = Modifier.padding(dimensionResource(R.dimen.spacing_medium))
8189
)
8290
}
91+
92+
@Preview(showBackground = true)
93+
@Composable
94+
fun SubmitOrCancelLoadingPreview() {
95+
SubmitOrCancel(
96+
submitLabel = "Submit",
97+
canSubmit = true,
98+
canCancel = true,
99+
isLoading = true,
100+
onSubmit = {},
101+
onCancel = {},
102+
modifier = Modifier.padding(dimensionResource(R.dimen.spacing_medium))
103+
)
104+
}

app/src/main/kotlin/app/fyreplace/fyreplace/ui/views/bars/TopBar.kt

+11
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,17 @@ fun TopBar(
5757
@Preview
5858
@Composable
5959
fun TopBarPreview() {
60+
TopBar(
61+
destinations = emptyList(),
62+
selectedDestination = Destination.Feed,
63+
enabled = true,
64+
onClickDestination = {}
65+
)
66+
}
67+
68+
@Preview
69+
@Composable
70+
fun TopBarWithButtonsPreview() {
6071
TopBar(
6172
destinations = listOf(Destination.Login(), Destination.Register()),
6273
selectedDestination = Destination.Login(),

0 commit comments

Comments
 (0)