Skip to content

Commit

Permalink
time colon added, version.
Browse files Browse the repository at this point in the history
  • Loading branch information
commandiron committed Sep 8, 2022
1 parent 92d3ac3 commit 3b47abd
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 1 deletion.
2 changes: 1 addition & 1 deletion wheel-picker-compose/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ afterEvaluate {

groupId = 'com.github.commandiron'
artifactId = 'wheel-picker-compose'
version = '1.0.1'
version = '1.0.2'
}
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ import androidx.compose.foundation.shape.RoundedCornerShape
import androidx.compose.material3.LocalContentColor
import androidx.compose.material3.MaterialTheme
import androidx.compose.material3.Surface
import androidx.compose.material3.Text
import androidx.compose.runtime.Composable
import androidx.compose.runtime.mutableStateOf
import androidx.compose.runtime.remember
Expand Down Expand Up @@ -110,6 +111,16 @@ fun WheelTimePicker(
}
)
}
Box(
modifier = Modifier.size(size),
contentAlignment = Alignment.Center
) {
Text(
text = ":",
style = textStyle,
color = textColor
)
}
}
}

Expand Down

0 comments on commit 3b47abd

Please sign in to comment.