diff --git a/lib/src/widgets/toolbar/buttons/link_style_button.dart b/lib/src/widgets/toolbar/buttons/link_style_button.dart index dfa22817..fb036e7f 100644 --- a/lib/src/widgets/toolbar/buttons/link_style_button.dart +++ b/lib/src/widgets/toolbar/buttons/link_style_button.dart @@ -265,6 +265,9 @@ class _LinkDialogState extends State<_LinkDialog> { decoration: InputDecoration( labelText: context.loc.text, hintText: context.loc.pleaseEnterTextForYourLink, + hintStyle: widget.dialogTheme?.inputTextStyle?.copyWith( + color: widget.dialogTheme?.inputTextStyle?.color + ?.withOpacity(0.65)), labelStyle: widget.dialogTheme?.labelTextStyle, floatingLabelStyle: widget.dialogTheme?.labelTextStyle, ), @@ -284,6 +287,9 @@ class _LinkDialogState extends State<_LinkDialog> { decoration: InputDecoration( labelText: context.loc.link, hintText: context.loc.pleaseEnterTheLinkURL, + hintStyle: widget.dialogTheme?.inputTextStyle?.copyWith( + color: widget.dialogTheme?.inputTextStyle?.color + ?.withOpacity(0.65)), labelStyle: widget.dialogTheme?.labelTextStyle, floatingLabelStyle: widget.dialogTheme?.labelTextStyle, ),