Answers for "horizontal scrollview react native"

3

react native scrollview horizontal

<ScrollView horizontal={true}>
  <Text>Child 1</Text>
  <Text>Child 2</Text>
  <Text>Child 3</Text>
</ScrollView>
Posted by: Guest on May-24-2021
4

react native scrollview

import React from 'react';
import { StyleSheet, Text, ScrollView } from 'react-native';

export default function App() {
  return (
      <ScrollView style={styles.scrollView}>
        <Text style={styles.text}>
          Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do
          eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad
          minim veniam, quis nostrud exercitation ullamco laboris nisi ut
          aliquip ex ea commodo consequat. Duis aute irure dolor in
          reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla
          pariatur. Excepteur sint occaecat cupidatat non proident, sunt in
          culpa qui officia deserunt mollit anim id est laborum.
        </Text>
      </ScrollView>
  );
}

const styles = StyleSheet.create({
  scrollView: {
    backgroundColor: 'gray',
    marginHorizontal: 20,
  },
  text: {
    fontSize: 42,
  },
});
Posted by: Guest on May-02-2020
0

horizontal scrollview in react js

import React, { Component } from 'react';import ScrollMenu from 'react-horizontal-scrolling-menu';import './App.css'; // list of itemsconst list = [  { name: 'item1' },  { name: 'item2' },  { name: 'item3' },  { name: 'item4' },  { name: 'item5' },  { name: 'item6' },  { name: 'item7' },  { name: 'item8' },  { name: 'item9' }]; // One item component// selected prop will be passedconst MenuItem = ({text, selected}) => {  return <div    className={`menu-item ${selected ? 'active' : ''}`}    >{text}</div>;}; // All items component// Important! add unique keyexport const Menu = (list, selected) =>  list.map(el => {    const {name} = el;     return <MenuItem text={name} key={name} selected={selected} />;  });  const Arrow = ({ text, className }) => {  return (    <div      className={className}    >{text}</div>  );};  const ArrowLeft = Arrow({ text: '<', className: 'arrow-prev' });const ArrowRight = Arrow({ text: '>', className: 'arrow-next' }); const selected = 'item1'; class App extends Component {  constructor(props) {    super(props);    // call it again if items count changes    this.menuItems = Menu(list, selected);  }   state = {    selected  };   onSelect = key => {    this.setState({ selected: key });  }    render() {    const { selected } = this.state;    // Create menu from items    const menu = this.menuItems;     return (      <div className="App">        <ScrollMenu          data={menu}          arrowLeft={ArrowLeft}          arrowRight={ArrowRight}          selected={selected}          onSelect={this.onSelect}        />      </div>    );  }} 
Posted by: Guest on December-25-2020

Code answers related to "horizontal scrollview react native"

Code answers related to "Javascript"

Browse Popular Code Answers by Language