Results 29 comments of laishere

虚拟机上也有,Pixel 2 API 28,简单解决办法,自定义layout,NumberPicker设置background颜色即消失。

You can modify the LineChart.tsx. Check the point calculation logic here: https://github.com/indiespirit/react-native-chart-kit/blob/f30a37d73cd02807c2f19cd8094f1cacb9f6ba3b/src/line-chart/LineChart.tsx#L677 You need to modify the x calculation logic, the straight way to do is changing the xmax calculations:...

RN version: 0.72.6 I ran into this error today. **I am able to solve it SIMPLY by deleting `hermes` under my project > Frameworks** At first I ran into another...

Tested with hermes engine. They do optimize `+=` on string. However like @bellard said, there're corner cases `+=` optimization won't work. For example, changing `str = str + str1` to...

I just learn that V8 doesn't adopt rope string too. Maybe we can implement similar optimization on quickjs too. Here're my brief thoughts. 1. For tiny string, inline store to...

Thanks for reply. I think slice does have some weight in string operations. For example, `split` and `regexp`. I think these two are commonly used. I think you are right...

@cs-manughian You're welcome! Feel free to go ahead with the pull request.

> **This plugin indeed need to be improved by adding `transform: scale(1);` to `color-section` class which is described here https://stackoverflow.com/a/70422489/1252528** > > For editorjs, I don't know if it is...

A simple fix on incorrect zoom behavior. The problem is at PhotoViewAttacher.java line 101 ```java if (mScaleDragDetector.isScaling()) { return; // Do not drag if we are already scaling } ```...