html-editor-enhanced icon indicating copy to clipboard operation
html-editor-enhanced copied to clipboard

[BUG]

Open jenishpaghadal opened this issue 1 year ago • 1 comments

Describe the bug We have using flutter 2.0.6 sdk version

To Reproduce Steps to reproduce the behavior: when launch the page

Expected behavior its working fine in IOS but getting issue in android while launching the screen suddenly getting this issue

Screenshots Screenshot_20230901_183456

Device: Andorid 12

Additional context Widget getWriteNoteField() {

return HtmlEditor(
  htmlToolbarOptions:  HtmlToolbarOptions(),
  controller: controller, //required
  htmlEditorOptions: HtmlEditorOptions(
      hint: R.string().physicianStrings.writeNoteHere , spellCheck: true),
  otherOptions: OtherOptions(
    decoration: BoxDecoration(
      color: appTheme.whiteColor,
      border:
      Border.all(color: appTheme.grey.withOpacity(0.3), width: 1),
      borderRadius: BorderRadius.circular(10),
      boxShadow: [
        BoxShadow(
          color: Colors.grey.withOpacity(0.3),
          blurRadius: 3,
          spreadRadius: 1,
          offset: const Offset(
            5,
            5,
          ),
        ),
      ],
    ),
    height: getSize(300),
  ),
);

jenishpaghadal avatar Sep 01 '23 13:09 jenishpaghadal

Can you assign that work to me? I'll take a look at it

Clothless avatar Sep 01 '23 13:09 Clothless