import React from 'react';
import {
StyleSheet,
View,
Text,
SafeAreaView,
Image,
ScrollView,
} from 'react-native';
import AnimatedAccordion from '../../../../src';
import { FC, useCallback } from 'react';
import { assets } from '../../assets';
import { Sport, Event } from '../../components';
import { sports, array } from './constants';
const HomeScreen: FC = () => {
const handleContent = useCallback(
(data) =>
data.map(({ command, icon, score, type }) => (
)),
[]
);
const hasHeader = (
LiveScore
);
const hasBanner = (
);
const hasSports = (
{sports.map(({ image, title }) => (
))}
);
return (
{hasHeader}
{hasBanner}
{hasSports}
{array.map(({ image, events, county, title }) => (
console.log('expanded')}
onAnimatedEndCollapsed={() => console.log('collapsed')}
handleContentTouchable={() => (
{title}
{county}
)}
renderContent={() => handleContent(events)}
styleTouchable={styles.touchable}
styleContainer={styles.content}
/>
))}
);
};
export default HomeScreen;
const styles = StyleSheet.create({
container: {
flex: 1,
backgroundColor: '#181829',
},
league: {
fontSize: 22,
color: '#FFFFFF',
},
content: {
paddingHorizontal: 18,
},
item: {
flexDirection: 'row',
alignItems: 'center',
},
sports: {
flexDirection: 'row',
alignItems: 'center',
paddingStart: 18,
},
header: {
paddingHorizontal: 18,
alignItems: 'center',
flexDirection: 'row',
justifyContent: 'space-between',
marginVertical: 24,
},
liveScore: {
fontSize: 24,
color: '#FFFFFF',
},
touchable: {
backgroundColor: '#181829',
},
row: {
flexDirection: 'row',
justifyContent: 'flex-start',
alignItems: 'center',
},
flag_1: {
height: 28,
width: 28,
marginRight: 18,
},
notification: {
height: 28,
width: 28,
},
search: {
height: 22,
width: 22,
marginRight: 18,
},
title: {
marginStart: 12,
fontSize: 20,
color: '#0b0e25',
},
message: {
fontSize: 14,
color: '#AAAAAA',
},
banner: {
alignSelf: 'center',
height: 220,
width: '90%',
},
sportsContent: {
height: 200,
},
});