Compare commits

...

4 Commits

Author SHA1 Message Date
fufesou
0592905ad4 fix: dialog text color in dark theme
Signed-off-by: fufesou <linlong1266@gmail.com>
2026-02-01 10:15:39 +08:00
copilot-swe-agent[bot]
255ce534c9 Keep original link color (blue), only fix non-link text color
Co-authored-by: rustdesk <71636191+rustdesk@users.noreply.github.com>
2026-01-31 18:51:02 +00:00
copilot-swe-agent[bot]
bace6b918f Fix dialog text color for dark theme with links
Co-authored-by: rustdesk <71636191+rustdesk@users.noreply.github.com>
2026-01-31 18:43:22 +00:00
copilot-swe-agent[bot]
57a77f01fe Initial plan 2026-01-31 18:40:40 +00:00

View File

@@ -1124,18 +1124,23 @@ class CustomAlertDialog extends StatelessWidget {
Widget createDialogContent(String text) {
final RegExp linkRegExp = RegExp(r'(https?://[^\s]+)');
bool hasLink = linkRegExp.hasMatch(text);
// Early return: no link, use default theme color
if (!hasLink) {
return SelectableText(text, style: const TextStyle(fontSize: 15));
}
final List<TextSpan> spans = [];
int start = 0;
bool hasLink = false;
linkRegExp.allMatches(text).forEach((match) {
hasLink = true;
if (match.start > start) {
spans.add(TextSpan(text: text.substring(start, match.start)));
}
spans.add(TextSpan(
text: match.group(0) ?? '',
style: TextStyle(
style: const TextStyle(
color: Colors.blue,
decoration: TextDecoration.underline,
),
@@ -1153,13 +1158,9 @@ Widget createDialogContent(String text) {
spans.add(TextSpan(text: text.substring(start)));
}
if (!hasLink) {
return SelectableText(text, style: const TextStyle(fontSize: 15));
}
return SelectableText.rich(
TextSpan(
style: TextStyle(color: Colors.black, fontSize: 15),
style: const TextStyle(fontSize: 15),
children: spans,
),
);