boboxiaodd

Results 22 issues of boboxiaodd

https://github.com/listenzz/hybrid-navigation/blob/fb2a7f025378cfb0c4c159b0c970a71dae235345/android/src/main/java/com/reactnative/hybridnavigation/ReactStackFragment.java#L39 资源文件里面确实没有 nav_gone 这个动画

`Picker.hide()` 方法提前执行了hidden,导致动画无效, `onPickerCancel` 提前执行了 hidden ,也会导致动画无效并且闪烁 https://github.com/beefe/react-native-picker/blob/6fa89e921c93279e8c0ef6dc871bd13aeddad158/ios/RCTBEEPickerManager/RCTBEEPickerManager.m#L123 改动如下: ```objectivec RCT_EXPORT_METHOD(hide){ if (self.pick) { dispatch_async(dispatch_get_main_queue(), ^{ [UIView animateWithDuration:.3 animations:^{ [self.pick setFrame:CGRectMake(0, SCREEN_HEIGHT, SCREEN_WIDTH, self.height)]; } completion:^(BOOL finished) { [self.pick removeFromSuperview]; self.pick...

``` if (@available(iOS 14.5, *)) { wkWebView.configuration.preferences.textInteractionEnabled = NO; } ``` https://stackoverflow.com/questions/75628788/disable-double-tap-magnifying-glass-in-safari-ios

### Expected Behaviour ### Actual Behaviour ### Reproduce Scenario (including but not limited to) #### Steps to Reproduce var playlist = [{ ... },{...}] player.setPlaylistItems(null,null,playlist); playlist = [{...}] player.setPlaylistItems(null,null,playlist); when...

must add ```java mqttOptions.setCleanSession(options.getBoolean("clean")); ``` at ['RCTMqtt.java' line: `151`](https://github.com/SudoPlz/sp-react-native-mqtt/blob/7105d214b7a70c0bcf399b190337ce424d158265/android/src/main/java/com/tuanpm/RCTMqtt/RCTMqtt.java#L151)

```objectivec _emojiView = [[UIView alloc] initWithFrame:CGRectMake(0.0,kChatBarHeight, screenWidth, _chatExtbarHeight)]; _pageItemView = [[JhPageItemView alloc] initWithFrame:CGRectMake(0.0,0.0, screenWidth, _chatExtbarHeight) withmaxColumn:6 maxRow:4]; _pageItemView.backgroundColor = [UIColor clearColor]; _pageItemView.Jh_otherColor = [UIColor clearColor]; _pageItemView.Jh_layoutStyle = JhCustomHorizontalArrangement; _pageItemView.Jh_pageControlStyle =...

App in background, some times crash with this: ``` java.lang.IllegalArgumentException: You cannot start a load for a destroyed activity at com.bumptech.glide.manager.RequestManagerRetriever.assertNotDestroyed(RequestManagerRetriever.java:366) ``` https://github.com/xerdnu/react-native-blasted-image/blob/ff9d739e1a0500095394a8d82cb3f1973d395d94/android/src/main/java/com/reactlibrary/BlastedViewManager.java#L37 maybe check `view.getContext() != null`

it is very usefull when show icon in navigation header

feature request

i want to animate a image , but got an error: ``` createAnimatedComponent does not support stateless functional components; use a class instead. ``` https://github.com/facebook/react-native/issues/22066

feature request

i add dependencies to build.gradle like `react-native-fast-image` , but not work. ``` implementation 'com.github.penfeizhou.android.animation:glide-plugin:2.28.0 ```

feature request