fencer

Results 13 comments of fencer

I see that this commit has not been merged into master, can I use patch to temporarily solve this problem? ` diff --git a/node_modules/react-native-multithreading/cpp/RNMultithreadingInstaller.cpp b/node_modules/react-native-multithreading/cpp/RNMultithreadingInstaller.cpp index 7a3e6e5..345dcbb 100644 --- a/node_modules/react-native-multithreading/cpp/RNMultithreadingInstaller.cpp...

> 我在这里试验:[https ://github.com/web-ridge/expo-expirement/blob/main/patches/react-native-navigation%2B7.28.0.patch](https://github.com/web-ridge/expo-expirement/blob/main/patches/react-native-navigation%2B7.28.0.patch) I researched this repo, and I didn't find that the registration method of expo is executed. This seems to be an implementation suitable for the web version,...

I see that the content of tabHeader only supports ScrollView, but for the needs of long list scrolling or a too large number of images lists, it seems that tabHeader...

```js const abort = new AbortController(); let res = null; fetch(url, { signal: abort.signal }).then(_res => { res = _res; }) setTimeout(() => { if (!res) abort.abort(); }, 5000); ```

```js const data = [ { id: '1', name: '父节点1', children: [ { id: '1-1', name: '子节点1-1', children: [ { id: '1-1-1', name: '子节点1-1-1' }, { id: '1-1-2', name: '子节点1-1-2'...

```js function randomUniqueArr(len, min, max) { if (!len || len = _max - _min) return new Array(_max - _min + 1).fill(null).map((_, idx) => idx + _min); const set = new...

```js const low = new Array(26).fill(10).map((item, index) => (item + index).toString(36)); const ups = low.map(item => item.toLocaleUpperCase()); const words = [...low, ...ups]; function getWordCount(str) { const res = {}; words.forEach(item...

```js function getClose(target, arr) { const dif = arr.map(item => Math.abs(item - target)); const min = Math.min(...dif); const index = dif.findIndex(i => i === min); return arr[index]; } ```

```js const data2 = [ { id: '1', name: '父节点1', parentId: undefined }, { id: '1-1', name: '子节点1-1', parentId: '1' }, { id: '1-1-1', name: '子节点1-1-1', parentId: '1-1' }, {...

如果着急的话,可以先用patch文件 `jverification-react-native+2.5.5.patch` ```patch diff --git a/node_modules/jverification-react-native/ios/RCTJVerificationModule/RCTJVerificationModule.m b/node_modules/jverification-react-native/ios/RCTJVerificationModule/RCTJVerificationModule.m index 3fb6b06..04a2bb0 100644 --- a/node_modules/jverification-react-native/ios/RCTJVerificationModule/RCTJVerificationModule.m +++ b/node_modules/jverification-react-native/ios/RCTJVerificationModule/RCTJVerificationModule.m @@ -223,7 +223,7 @@ + (BOOL)requiresMainQueueSetup rctView = [[RCTRootView alloc] initWithBridge:self.bridge moduleName:viewParams[i][CUSTOM_VIEW_NAME] initialProperties:nil]; } else {...