htmltoolbar and htmlEditor separate background color

290 Views Asked by At

How can we get htmltoolbar and htmlEditor separate background color My work current image

Expectation:

 Expectation image

htmlToolbarOptions: HtmlToolbarOptions(
        dropdownFocusColor: borderColor,
        dropdownBoxDecoration: BoxDecoration(
          borderRadius: const BorderRadius.all(Radius.circular(8.0)),
        ),
        buttonFillColor: yellowColor,
        renderBorder: true,
        toolbarType: ToolbarType.nativeExpandable,
        textStyle: const TextStyle(color:Color(0xff344054),),
        initiallyExpanded: false,
      ),
      htmlEditorOptions: HtmlEditorOptions(
        shouldEnsureVisible: true,
        initialText: data.taskStatus,
        hint: S.current.task_description,
        spellCheck: true,
        autoAdjustHeight: true,
        adjustHeightForKeyboard: false,
      ),
      otherOptions: const OtherOptions(height: 1500),
    );
0

There are 0 best solutions below