We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 24f6304 commit 3e94f01Copy full SHA for 3e94f01
app/src/main/java/com/dp/logcatapp/ui/common/TopSearchBarForLogs.kt
@@ -146,14 +146,16 @@ fun SearchLogsTopBar(
146
onClick = onClickRegex,
147
colors = ButtonDefaults.textButtonColors(
148
contentColor = if (regexEnabled) {
149
- textButtonColors.contentColor
+ MaterialTheme.colorScheme.onPrimaryContainer
150
} else {
151
textButtonColors.disabledContentColor
152
},
153
),
154
contentPadding = PaddingValues(),
155
) {
156
- Text(".*")
+ Text(
157
+ text = ".*",
158
+ )
159
}
160
161
0 commit comments