We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4163f44 commit 6175fa8Copy full SHA for 6175fa8
app/src/main/java/com/hicham/wcstoreapp/ui/theme/Theme.kt
@@ -29,11 +29,14 @@ private val LightColorPalette = lightColors(
29
30
@Composable
31
fun WCStoreAppTheme(darkTheme: Boolean = isSystemInDarkTheme(), content: @Composable() () -> Unit) {
32
- val colors = if (darkTheme) {
33
- DarkColorPalette
34
- } else {
35
- LightColorPalette
36
- }
+// TODO fix dark theme
+// val colors = if (darkTheme) {
+// DarkColorPalette
+// } else {
+// LightColorPalette
37
+// }
38
+
39
+ val colors = LightColorPalette
40
41
MaterialTheme(
42
colors = colors,
0 commit comments