1
0
Fork 0
mirror of https://github.com/anyproto/anytype-kotlin.git synced 2025-06-08 05:47:05 +09:00

DROID-1303 App | Fix | Files storage progress bar state (#21)

This commit is contained in:
Konstantin Ivanov 2023-06-05 19:57:34 +02:00 committed by GitHub
parent ecaef57e6c
commit 177eed7178
Signed by: github
GPG key ID: 4AEE18F83AFDEB23

View file

@ -23,6 +23,7 @@ import androidx.compose.material.Text
import androidx.compose.runtime.Composable
import androidx.compose.ui.Alignment
import androidx.compose.ui.Modifier
import androidx.compose.ui.graphics.StrokeCap
import androidx.compose.ui.res.colorResource
import androidx.compose.ui.res.stringResource
import androidx.compose.ui.text.TextStyle
@ -219,7 +220,8 @@ fun DefaultLinearProgressIndicator(progress: Float) {
modifier = Modifier
.height(6.dp)
.fillMaxWidth(),
backgroundColor = colorResource(id = R.color.shape_tertiary)
backgroundColor = colorResource(id = R.color.shape_tertiary),
strokeCap = StrokeCap.Round
)
}