Skip to content

Commit

Permalink
fix themes
Browse files Browse the repository at this point in the history
  • Loading branch information
shengyou committed Sep 5, 2023
1 parent 858cc7c commit 7ed35ba
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ fun main() = singleWindowApplication(
title = "Platform Tab Implementation",
) {
var isDark by remember { mutableStateOf(false) }
val theme = if (isDark) IntUiTheme.dark() else IntUiTheme.light()
val theme = if (isDark) IntUiTheme.darkThemeDefinition() else IntUiTheme.lightThemeDefinition()

val supportedPlatform = listOf(
Platform(
Expand Down

0 comments on commit 7ed35ba

Please sign in to comment.