Skip to content

Commit

Permalink
Merge pull request #96 from joreilly/glance
Browse files Browse the repository at this point in the history
glance updates
  • Loading branch information
joreilly authored Jul 29, 2023
2 parents 9b1644f + 630895c commit 232090c
Showing 1 changed file with 9 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -36,10 +36,15 @@ class BikeShareAppWidget : GlanceAppWidget(), KoinComponent {
horizontalAlignment = Alignment.Horizontal.CenterHorizontally,
verticalAlignment = Alignment.Vertical.CenterVertically
) {
Text(
text = station.name,
style = TextStyle(fontSize = 15.sp, fontWeight = FontWeight.Bold)
)
Row(
GlanceModifier.fillMaxWidth(),
horizontalAlignment = Alignment.Horizontal.CenterHorizontally
) {
Text(
text = station.name,
style = TextStyle(fontSize = 15.sp, fontWeight = FontWeight.Bold)
)
}
Spacer(modifier = GlanceModifier.size(8.dp))

Image(
Expand Down

0 comments on commit 232090c

Please sign in to comment.