Which approach should I use in React-Native, where I need to implement horizontal scrolling, such as viewing a collection. Appearance and appearance should be exactly similar to Native iOS UICollectionView.
You can use both ListView, and ScrollView. You just need to compose your list correctly, for example, to create a grid. Check out UIExplorer to see how the basic components work.
ListView
ScrollView
You can use the ListView component, make sure you set the horizontal property.
<ListView horizontal={true} style={{flex:1}} dataSource={this.state.dataSource} renderRow={(data) => <Row/>}/>
, .
Source: https://habr.com/ru/post/1652174/More articles:SBT alternative for maven dependencyManagement - mavenкак использовать две координаты, нарисовать эллипс с помощью javascript? - javascriptCreating the same hashes as symfony2 using java (SHA-512) - javaangular material for transferring data to a predefined dialog - angularjsThe AVPlayerViewController StatusBar view makes the switch to UI - swiftFilter complex metrics in graphan - influxdbDoes ESlint have an empty line rule before the first statement in a function? - javascriptHow can we link the search text entered in SearchView in Android via mvvmcross - androidhttps://translate.googleusercontent.com/translate_c?depth=1&pto=aue&rurl=translate.google.com&sl=ru&sp=nmt4&tl=en&u=https://fooobar.com/questions/1652178/push-package-builded-in-gitlab-cirunner-to-nexus-repository&usg=ALkJrhjwZS04jiWKnWl8d5vOGAuCp5mHEAВременно отключить опрос SCM на сервере Jenkins в системе Groovy - version-controlAll Articles