import React from 'react' import { View, ScrollView, Text, StyleSheet, Image, ImageBackground, TouchableOpacity } from 'react-native' import Theme from '../theme.style.js'; export default function BoardCarousel(props) { return ( {props.items.map((item, index) => { return ( ) })} {props.bullets} ) } const styles = StyleSheet.create({ statsHead: { paddingTop: 10, paddingHorizontal: 12, }, container: { height: '100%', width: '100%', backgroundColor: '#fbfbfb', shadowColor: '#fcfcfc', shadowOpacity: 1, shadowOffset: { width: 0, height: 5 }, }, scrollView: { display: 'flex', flexDirection: 'row', overflow: 'hidden', width: '100%', height: '100%' }, bullets: { flex: 1, flexDirection: 'row', justifyContent: 'center', alignItems: 'center', padding: 10, paddingTop: 20, } });