import { StatusBar } from 'expo-status-bar' import { View, Image, Text, Button} from 'react-native' import React from 'react'; import stylesScreen from './style/screens.style'; import styles from './style/Settings.style'; import { TopBar } from '../components/TopBar'; import { BotBar } from '../components/BotBar'; import { Conversation } from '../core/conversation'; import { ButtonGameTypeChoice } from '../components/ButtonGameTypeChoice'; import { useMatchStore } from '../context/matchContext'; import { FlatList, TextInput } from 'react-native-gesture-handler'; import { PlayerBox } from '../components/PlayerBox'; function MatchMaking(props: { navigation: any; }) { const { navigation } = props const match = useMatchStore().match; return ( usr.getUsername()} renderItem={({item}) => } />