Questions tagged [react-native-scrollview]

ScrollView is React Native component equivalent to Android/iOS ScrollView, that allows the view hierarchy placed within it to be scrolled

Documentation: here

232 questions
0
votes
1 answer

react native scrollable tab view onchange

Can anyone help me how to use onChange props in react native scrollable tab view? Any sample code? Basically I want to fetch data, when tab is changed.
DeJavu
  • 73
  • 3
  • 10
0
votes
0 answers

Getting issue in android if keyboard appear

hai i designed a some registration page, For that i wrote a code like this inputFocused (refName) { let android = Platform.OS == 'android' if(Platform.OS == android){ let scrollResponder = this.refs.scrollView.getScrollResponder(); …
Hussian Shaik
  • 2,559
  • 9
  • 37
  • 57
0
votes
1 answer

Trigger component action when in view and visible

I am looking to implement a video autoplaying in the listview once user scrolls enough to make the video component visible on screen. However, I cannot find anything in the documentation that could help with implementing an action that would trigger…
0
votes
1 answer

Webview on react-native android doesn't load embed youtube url

import React, { View, WebView } from 'react-native'; export const YoutubeScreen = React.createClass({ render: function() { return (
-1
votes
1 answer

How to put multiple flatlists in one global scrollview in react native?

I want to add about 3 flatlist in my app's homepage. There's a global scrollview that wraps all the children. I have read other answers about using only one list and one flatlist. That can't be done here and it will make things messy. And I know…
-1
votes
1 answer

When use View instead of ScrollView it shows an empty screen

I do not want the header view to scroll and only need the body of the screen to scroll. I have 2 screens. 1. Names.js 2. StudentsList.js The content inside the Names.js is same as StudentsList.js. So I have used the Names.js as a component in…
sejn
  • 2,040
  • 6
  • 28
  • 82
-1
votes
2 answers

Can we use listview for heterogeneous collections

I need to create a feed screen like facebook application where I will fetch data from api and each row has different size of images and text. I know ScrollView is for both homogeneous and heterogeneous collection and listView is for only homogeneous…
1 2 3
15
16