import { StyleSheet, Text, View, ScrollView, FlatList, TouchableWithoutFeedback } from 'react-native' import { useState } from 'react' import fonts from '../theme/fonts' import colors from '../theme/colors' import PrimaryButton from '../components/organisms/Buttons/PrimaryButton' import { Portal, ToggleButton, Modal, PaperProvider, IconButton } from 'react-native-paper' import HorizontalNewsCardVariant from '../components/organisms/Cards/HorizontalNewsCardVariant' import NewscoutHomeHeader from '../components/organisms/Headers/NewscoutHomeHeader' import SecondaryButton from '../components/organisms/Buttons/SecondaryButton' const UnsignedLandingPage = ({ navigation }) => { const categories = ["All", "Tech", "Banking", "Retail", "Politics"] const news = [{}, {}, {}, {}, {}, {}, {}] const [categoryValue, setCategoryValue] = useState('all') const [visible, setVisible] = useState(false); const showModal = () => setVisible(true); const hideModal = () => setVisible(false); const homePageNavigation = () => { navigation.navigate('Home') } return ( You are not logged in. Log in to bookmark news, leave comment and to explore more! Don’t have account? Create one You are not logged in. Sign in or log in to bookmark news leave comment and a lot more! setCategoryValue(value)}> { categories.map((category) => { let valueId = category.toLowerCase() return {category} } style={[styles.underlinePill]} value={valueId} /> }) } } // ListFooterComponent={() => } ListHeaderComponent={() => } data={news} renderItem={(item) => } keyExtractor={item => news.indexOf(item)} /> {/* { news.map((newsItem) => ) } */} ) } export default UnsignedLandingPage const styles = StyleSheet.create({ container: { paddingHorizontal: fonts.getSize(16), backgroundColor: colors.white }, loginText: { fontFamily: fonts.type.regular, paddingVertical: fonts.getSize(16), color: colors.black }, underlinePillContainer: { paddingVertical: fonts.getSize(8), flexDirection: 'row', alignItems: 'space-between', }, selectedPillText: { fontFamily: fonts.type.semibold, fontSize: fonts.getSize(12), color: colors.black, borderBottomWidth: fonts.getSize(4), borderBottomColor: colors.tertiaryColor, borderRadius: 0 }, pillText: { fontFamily: fonts.type.semibold, fontSize: fonts.getSize(12), color: colors.gray }, underlinePill: { width: 'auto', }, cardContainer: { gap: fonts.getSize(4), paddingVertical: fonts.getSize(4) }, modalContainerStyle: { padding: fonts.getSize(16), width: 'auto', marginHorizontal: fonts.getSize(32), backgroundColor: colors.white, borderRadius: fonts.getSize(4) } })