File tree Expand file tree Collapse file tree 1 file changed +6
-2
lines changed
app/src/main/java/com/smarttoolfactory/composeprogressindicator Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -12,14 +12,18 @@ import com.smarttoolfactory.progressindicator.*
1212
1313@Composable
1414fun ProgressIndicatorDemo () {
15- Column (modifier = Modifier .background(Color .DarkGray )) {
15+ Column (
16+ modifier = Modifier
17+ .background(Color .DarkGray )
18+ .padding(10 .dp)
19+ ) {
1620
1721 Row (
1822 modifier = Modifier .fillMaxWidth(),
1923 verticalAlignment = Alignment .CenterVertically
2024 ) {
2125 SpinningProgressIndicator ()
22- Spacer (modifier = Modifier .width(10 .dp))
26+ Spacer (modifier = Modifier .width(16 .dp))
2327 SpinningProgressIndicator (
2428 dynamicItemColor = MaterialTheme .colorScheme.primary,
2529 staticItemColor = MaterialTheme .colorScheme.onPrimary
You can’t perform that action at this time.
0 commit comments