Skip to content

Commit

Permalink
Change tab title
Browse files Browse the repository at this point in the history
  • Loading branch information
takahirom committed Jul 25, 2024
1 parent 04276d2 commit 157f58a
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -68,23 +68,23 @@ fun TimetableSheet(
selectedDay = Workday
},
) {
Text("Workday", color = Color.Green)
Text("Workday 9/11", color = Color.Green)
}
TextButton(
modifier = Modifier.background(Color.Black),
onClick = {
selectedDay = ConferenceDay1
},
) {
Text("Day 1", color = Color.Green)
Text("9/12", color = Color.Green)
}
TextButton(
modifier = Modifier.background(Color.Black),
onClick = {
selectedDay = DroidKaigi2024Day.ConferenceDay2
},
) {
Text("Day 2", color = Color.Green)
Text("9/13", color = Color.Green)
}
}
when (uiState) {
Expand Down

0 comments on commit 157f58a

Please sign in to comment.