Zengyanling
Zengyanling
what side-effects?
I have found RCTJSNavigationScheme was defined in [email protected] node_modules/react-native/React/Views/RCTWebView.m line 20 `NSString *const RCTJSNavigationScheme = @"react-js-navigation";` Obviously, it has removed in [email protected]. Redefine it in wkwebview temporarily. ``` // extern...
@peteruithoven can you show the Complete example,i still cannot understand what the notify mean? thank you very much. :)
oh~ it seem like control the subscription asynchronously
之前调试到这里 ``` // MJRefresh/Base/MJRefreshHeader.m - (void)placeSubviews { [super placeSubviews]; // 设置y值(当自己的高度发生改变了,肯定要重新调整Y值,所以放到placeSubviews方法中设置y值) self.mj_y = - self.mj_h- self.ignoredScrollViewContentInsetTop; } ``` 不清楚为啥是将refreshControl 向上移动 self.mj_h, 而 scrollView 的 mj_insetT 没有向上移动。 所以现在我目前的做法是 将上面代码的 ` self.mj_y...
最近我也遇到这个问题~ 所以最后是怎么解决的呢?
提主的方式有效~值得一试。 仔细看了下我用的Flatlist 中的ScrollView 是我自定义的xxScrollView, 此时就会出现 IOS 滚动不顺滑的现象。
This problem also appeared in [integration-with-existing-apps](https://facebook.github.io/react-native/docs/0.60/integration-with-existing-apps). ``` 2019-10-12 09:57:20.982 18495-18495/com***** E/unknown:ReactNative: Exception in native call java.lang.ClassCastException: com*****.MainActivity cannot be cast to androidx.fragment.app.FragmentActivity at com.facebook.react.modules.dialog.DialogModule.getFragmentManagerHelper(DialogModule.java:245) at com.facebook.react.modules.dialog.DialogModule.onHostResume(DialogModule.java:177) at com.facebook.react.bridge.ReactContext.onHostResume(ReactContext.java:208) at com.facebook.react.ReactInstanceManager.moveToResumedLifecycleState(ReactInstanceManager.java:661)...
哎 我也遇到同样的问题 我只是想简简单单做个测试, fis.config.set('roadmap.path',[ { reg: '**.js', isLayout: true, release: '/static$&' } ]); 怎么不能产出static文件夹???
1. in my case , when the parents of ViewPager2 has layout width 0 height 0 . ViewPager2 will fire onPageSelected(0). 2. and in my code , is all of...