leejunhui
leejunhui
>  > > @leejunhui 现有的事件是在pc端 mouseup 去判断是否有选中的文本, 移动端这边事件的触发可能会有所不同 感谢回复~ 这个库支持移动端的长按手势 https://github.com/luojilab/easy-marker,但是它的高亮和划线不是在原本的文字的 DOM 结构上,而是一个 svg 盖在了文字的上面,这样就会造成调整文字大小之后,高亮和划线位置错误。我再尝试看看能不能结合 easy-marker 和 react-web-highlight 实现一下
@iweijie 在借鉴了您的 react-web-highlight 的核心代码后,结合 easy-marker 的长按手势识别,最终达到了理想的效果👍🏻
目前来看确实是需要在根目录下创建一个 `podsepc` 文件来将所有依赖到的 「三方库」、「私有库」给汇总一下,我还在思考纯 `RN` 项目如何无感接入这个框架,不知道有没有小伙伴有好的思路呢?
I've just encountered the issue with Chrome 108.0.5359.124
hi @kahest , the policy source are [**Information security technology-Basic requirements for collecting personal information in mobile internet applications**](https://openstd.samr.gov.cn/bzgk/gb/newGbInfo?hcno=977D9EBB32ABF0A7DD6A1215969FE57A) and [Methods for identifying illegal and illegal collection and use of...
hi @brustolin Sorry, I am mainly engaged in React and React Native development, and I am not very skilled in writing tests of native code.😂
我今天也遇到安卓闪退的问题,最后把apk解压后发现缺失了libflutter.so文件,谷歌了一下,最后在gradle中设置如下 ``` buildTypes { release { ndk{ abiFilters "armeabi-v7a" } } debug { ndk { //这里要加上,否则debug包会出问题,后面三个为可选,x86建议加上不然部分模拟器回报错 abiFilters "armeabi", "armeabi-v7a", "arm64-v8a", "x86" } } } ``` 最后打包运行就没问题了
哥,三年了
> ```ts > type Concat = [...T, ...U] > ``` > > The above solution also works. > > How do you guys compare `any` with `unknown`? unknown also represents...
@xclidongbo Hi,最后解决了这个问题了吗?