Skip to content

Commit

Permalink
Merge pull request #159 from DroidKaigi/takahirom/change-tab-title/20…
Browse files Browse the repository at this point in the history
…24-07-25

Change tab title
  • Loading branch information
takahirom authored Jul 25, 2024
2 parents 04276d2 + 157f58a commit 56ef08e
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 56ef08e

Please sign in to comment.