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:
parent
ecaef57e6c
commit
177eed7178
1 changed files with 3 additions and 1 deletions
|
@ -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
|
||||
)
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue