File tree Expand file tree Collapse file tree
app/src/main/java/com/dessalines/thumbkey/ui/components/common Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -7,6 +7,7 @@ import androidx.compose.foundation.rememberScrollState
77import androidx.compose.foundation.verticalScroll
88import androidx.compose.material3.AlertDialog
99import androidx.compose.material3.Button
10+ import androidx.compose.material3.MaterialTheme
1011import androidx.compose.material3.Text
1112import androidx.compose.runtime.Composable
1213import androidx.compose.runtime.LaunchedEffect
@@ -71,7 +72,11 @@ fun ShowChangelog(appSettingsViewModel: AppSettingsViewModel) {
7172 .verticalScroll(scrollState),
7273 ) {
7374 val markdownText = DONATION_MARKDOWN + markdown
74- MarkdownText (markdownText)
75+ MarkdownText (
76+ markdown = markdownText,
77+ color = MaterialTheme .colorScheme.onBackground,
78+ linkColor = MaterialTheme .colorScheme.primary,
79+ )
7580 }
7681 },
7782 confirmButton = {
You can’t perform that action at this time.
0 commit comments