Prome
Prome
It's a timing issue. We need add an init done callback when OnContextInitialized called. https://github.com/hlwhl/webview_cef/blob/49ce96cadc22e99ffeef9244d344cb6039f75df6/common/webview_app.cc#L83-L98
@reisclaudio @waqadArshad You may change the default URL here as a temp solution. https://github.com/hlwhl/webview_cef/blob/49ce96cadc22e99ffeef9244d344cb6039f75df6/common/webview_app.cc#L90
It's caused by cvpixelbuffer, will fix it soon
Copy feature is not implemented currently.
h264编码不支持。youtube的视频是可以播放的,若不想编译cef的话你可以看下他们的视频方案。
Currently this plugin is not support multi tab.
> I too want to achieve the same thing. If that and keyboard support is implemented, it would be wonderful. > > Is there any work which we as independent...
> @szwang1 CefSettings have a property user_agent, you can find CefSettings used in startCEF(). > > I don't know do we really need a unified interface to set up the...
感谢贡献!最近我会抽时间review下代码,完善下macos的实现。 键盘输入确实是一个难点,目前看flutter中的api没有暴露出足够api用来实现ime支持,当前的实现仅输入英文字母也是存在bug。IME这块是本项目能否正常使用的关键点,如果有思路希望踊跃提出,感谢!
> > > @SinyimZhi 主要是监听输入法开始事件,然后把键盘事件交给 Flutter engine 处理, 此时 dart 那边配合 `DeltaTextInputClient` 处理来自 Flutter engine 的输入法事件,实现下面两个主要的功能: > > > > > > 1. 更新输入法在屏幕的位置以追随输入光标 > > > 2. 对正在输入的拼音添加下划线的标志(打字的时候注意看看正在拼写的拼音部分,下面会有一条下划线) >...