tneotia / html-editor-enhanced

A Flutter package that provides a WYSIWYG editor backed by flutter_inappwebview and the Summernote library.
https://pub.dev/packages/html_editor_enhanced
MIT License
274 stars 335 forks source link

[BUG] Html Editor Not working on Android #537

Open AxitGondaliya opened 1 month ago

AxitGondaliya commented 1 month ago

Not able to type anything when click on editor and when I am applying any style on getting initialize issue, please provide solution image

ygoncharenkofwd commented 1 month ago

For me it helped to use these dependency overrides:

dependency_overrides:
  flutter_inappwebview_android:
    git:
      url: https://github.com/holzgeist/flutter_inappwebview
      path: flutter_inappwebview_android
      ref: d89b1d32638b49dfc58c4b7c84153be0c269d057
  flutter_inappwebview_ios:
    git:
      url: https://github.com/andychucs/flutter_inappwebview
      path: flutter_inappwebview_ios
      ref: master
  webview_flutter_android: 3.16.1

The iOS one is to make it build with XCode 16, the other 2 are to fix Android build

AxitGondaliya commented 1 month ago

@ygoncharenkofwd Thank you it works for me