diff --git a/frontend/app_flowy/packages/appflowy_editor/lib/src/render/link_menu/link_menu.dart b/frontend/app_flowy/packages/appflowy_editor/lib/src/render/link_menu/link_menu.dart index 3a1785391b..58e8111793 100644 --- a/frontend/app_flowy/packages/appflowy_editor/lib/src/render/link_menu/link_menu.dart +++ b/frontend/app_flowy/packages/appflowy_editor/lib/src/render/link_menu/link_menu.dart @@ -1,10 +1,13 @@ +import 'package:appflowy_editor/src/editor_state.dart'; import 'package:appflowy_editor/src/infra/flowy_svg.dart'; +import 'package:appflowy_editor/src/render/style/editor_style.dart'; import 'package:flutter/material.dart'; class LinkMenu extends StatefulWidget { const LinkMenu({ Key? key, this.linkText, + this.editorState, required this.onSubmitted, required this.onOpenLink, required this.onCopyLink, @@ -13,6 +16,7 @@ class LinkMenu extends StatefulWidget { }) : super(key: key); final String? linkText; + final EditorState? editorState; final void Function(String text) onSubmitted; final VoidCallback onOpenLink; final VoidCallback onCopyLink; @@ -27,6 +31,8 @@ class _LinkMenuState extends State { final _textEditingController = TextEditingController(); final _focusNode = FocusNode(); + EditorStyle? get style => widget.editorState?.editorStyle; + @override void initState() { super.initState(); @@ -48,7 +54,7 @@ class _LinkMenuState extends State { width: 350, child: Container( decoration: BoxDecoration( - color: Colors.white, + color: style?.selectionMenuBackgroundColor ?? Colors.white, boxShadow: [ BoxShadow( blurRadius: 5, @@ -71,17 +77,19 @@ class _LinkMenuState extends State { if (widget.linkText != null) ...[ _buildIconButton( iconName: 'link', + color: style?.selectionMenuItemIconColor, text: 'Open link', onPressed: widget.onOpenLink, ), _buildIconButton( iconName: 'copy', - color: Colors.black, + color: style?.selectionMenuItemIconColor, text: 'Copy link', onPressed: widget.onCopyLink, ), _buildIconButton( iconName: 'delete', + color: style?.selectionMenuItemIconColor, text: 'Remove link', onPressed: widget.onRemoveLink, ), @@ -154,8 +162,8 @@ class _LinkMenuState extends State { label: Text( text, textAlign: TextAlign.left, - style: const TextStyle( - color: Colors.black, + style: TextStyle( + color: style?.selectionMenuItemTextColor ?? Colors.black, fontSize: 14.0, ), ), diff --git a/frontend/app_flowy/packages/appflowy_editor/lib/src/render/toolbar/toolbar_item.dart b/frontend/app_flowy/packages/appflowy_editor/lib/src/render/toolbar/toolbar_item.dart index bae2367fb9..5ab7f6cc50 100644 --- a/frontend/app_flowy/packages/appflowy_editor/lib/src/render/toolbar/toolbar_item.dart +++ b/frontend/app_flowy/packages/appflowy_editor/lib/src/render/toolbar/toolbar_item.dart @@ -348,6 +348,7 @@ void showLinkMenu( child: Material( child: LinkMenu( linkText: linkText, + editorState: editorState, onOpenLink: () async { await safeLaunchUrl(linkText); },