Skip to content

Instantly share code, notes, and snippets.

@boniattirodrigo
Created March 2, 2017 02:16
Show Gist options
  • Save boniattirodrigo/9b9dc5ed861310b4f59937a0bcadaa40 to your computer and use it in GitHub Desktop.
Save boniattirodrigo/9b9dc5ed861310b4f59937a0bcadaa40 to your computer and use it in GitHub Desktop.
Using React Native component
import {
Text,
ScrollView,
} from 'react-native';
class Carousel extends Component {
render() {
return (
<ScrollView>
<Text>Lorem ipsum...</Text>
<Text>Lorem ipsum...</Text>
<Text>Lorem ipsum...</Text>
<Text>Lorem ipsum...</Text>
</ScrollView>
);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment