Ruslan Baybekov

Results 25 comments of Ruslan Baybekov

@mieszko4 @iamnader `react-native start --reset-cache` works for me

Works fine on `react-native-web`. So must work on Expo web too. There is one remark: instead of [RN Metro bundler](https://github.com/facebook/metro) (used for building js for native platforms), Webpack (used for...

@Kaseaa will wait for PR-review. For now you can use my way: 1. Install deps: `yarn add react-native-web-webview github:oxyii/react-native-youtube-iframe#dist` 2. Use this lib according to the docs ```jsx import YoutubePlayer...

> react-native-web-webview does not support injectJavascript @LonelyCpp What you mean? https://github.com/react-native-web-community/react-native-web-webview/blob/278b6fd669852b06e3dc1ab318475d039ed71830/src/index.js#L97-L107 Play / pause works fine, just re-checked **Updated** Oh.. I understand. You mean manual control by ref. Sorry, I...

@joevo2 https://github.com/LonelyCpp/react-native-youtube-iframe/pull/85#issuecomment-730463392

+1 I also need an equivalent of ```js Model.find().populate({ path: "child", populate: { path: "subChild", populate: { path: "subSubChild" } } }) ```

@jakil93 [bounces](https://reactnative.dev/docs/scrollview#bounces-ios)? Also you can try to set `positionFixed` Swiper prop

@jakil93 I really don't understand what exactly wrong. Did you wanna to hold swiper while ScrollView is moving?

@jakil93 You can control it by your-self. Something like this (not tested): ```jsx import { useState } from 'react'; export default () => { const [swiperGestureEnabled, setSwiperGestureEnabled] = useState(true); return...

@chayancbnits I see that controls layer of Swiper v2 is not working properly.. I will rewrite it again. Sorry