diff --git a/bob_party/src/Games/BlackJack/blackJack.js b/bob_party/src/Games/BlackJack/blackJack.js index 9bef1db..9b0df6e 100644 --- a/bob_party/src/Games/BlackJack/blackJack.js +++ b/bob_party/src/Games/BlackJack/blackJack.js @@ -58,7 +58,7 @@ export default function BlackJack(props){ @@ -178,7 +178,7 @@ export default function BlackJack(props){ setTotalBet(0); setGameover(true); - setGameMessage("You Win $ "+ betValue); + setGameMessage("You Win "+ betValue+" BobCoins"); } else if(playerPoints > 21 && dealerPoints <= 21){ diff --git a/bob_party/src/components/SkinComponent.tsx b/bob_party/src/components/SkinComponent.tsx index 1431762..ab27c93 100644 --- a/bob_party/src/components/SkinComponent.tsx +++ b/bob_party/src/components/SkinComponent.tsx @@ -15,7 +15,7 @@ import { useSkinStore } from "../context/storeContext" import { MANAGER_SKIN, MANAGER_USER } from "../../appManagers" - +const coinImage = require('../../assets/Icons/Coin.png') export const SkinComponent: @@ -105,7 +105,13 @@ export const SkinComponent: style={styles.imageSkin} source={{ uri: skin.getSkinSource() }} /> - 100€ + + {skin.getSkinCost()} + + ) case 'liste': diff --git a/bob_party/src/components/style/Skin.style.js b/bob_party/src/components/style/Skin.style.js index 41cd4c3..34c4099 100644 --- a/bob_party/src/components/style/Skin.style.js +++ b/bob_party/src/components/style/Skin.style.js @@ -33,4 +33,13 @@ export default StyleSheet.create({ fontWeight: 'bold', color: 'white', }, + coinStyle:{ + height: 25, + width: 25, + }, + shopNameView:{ + alignSelf: 'center', + flexDirection:'row', + alignItems: 'center' + } }); \ No newline at end of file diff --git a/bob_party/src/screens/style/SignIn.style.js b/bob_party/src/screens/style/SignIn.style.js index 34eeeb6..34315c9 100644 --- a/bob_party/src/screens/style/SignIn.style.js +++ b/bob_party/src/screens/style/SignIn.style.js @@ -30,5 +30,6 @@ export default StyleSheet.create({ backgroundColor: 'white', padding: 10, marginVertical: 10, + borderRadius: 15 } }); \ No newline at end of file diff --git a/bob_party/src/screens/style/SignUp.style.js b/bob_party/src/screens/style/SignUp.style.js index 1d7e6fe..39f5d2e 100644 --- a/bob_party/src/screens/style/SignUp.style.js +++ b/bob_party/src/screens/style/SignUp.style.js @@ -8,9 +8,10 @@ export default StyleSheet.create({ backgroundColor: 'white', marginTop: 10, paddingLeft: 15, + borderRadius: 15 }, textInputPassword: { - width: '70%', + width: '100%', height: '100%', backgroundColor: 'white', }, @@ -20,6 +21,7 @@ export default StyleSheet.create({ backgroundColor: 'white', paddingHorizontal: 15, marginTop: 10, + borderRadius: 15 }, viewIndicator: { flex: 1,