push pour toto
continuous-integration/drone/push Build is failing Details

Persistance
Alban GUILHOT 2 years ago
parent 2065fd11b5
commit e89d09b95b

@ -6,6 +6,8 @@ import { TopBar } from '../components/TopBar';
import { BotBar } from '../components/BotBar'; import { BotBar } from '../components/BotBar';
import { Conversation } from '../core/conversation'; import { Conversation } from '../core/conversation';
import { ButtonGameTypeChoice } from '../components/ButtonGameTypeChoice'; import { ButtonGameTypeChoice } from '../components/ButtonGameTypeChoice';
import { MANAGER_MATCH } from '../../App';
import { useMatchStore } from '../context/matchContext';
@ -15,6 +17,7 @@ function LobbySolo(props: { navigation: any; }) {
const { navigation } = props const { navigation } = props
const match = useMatchStore().match;
return ( return (
<View style={stylesScreen.container}> <View style={stylesScreen.container}>
@ -24,6 +27,10 @@ function LobbySolo(props: { navigation: any; }) {
onPress={() => navigation.navigate('GameChoice')} onPress={() => navigation.navigate('GameChoice')}
/> />
</View> </View>
<Image
source={{uri: match.getGame().getImageSource()}}
/>
</View> </View>
); );
} }

Loading…
Cancel
Save