diff --git a/app/index.tsx b/app/index.tsx index 2f107b4..eb5f1b3 100644 --- a/app/index.tsx +++ b/app/index.tsx @@ -3,39 +3,43 @@ import { ScrollView, Text, Alert, Button } from "react-native"; import PlayerSelector from "@/components/PlayerSelector"; import BuyInSelector from "@/components/BuyInSelector"; import ChipsSelector from "@/components/ChipsSelector"; - +import ChipDistributionSummary from "@/components/ChipDistributionSummary"; const IndexScreen = () => { const [playerCount, setPlayerCount] = useState(2); const [buyInAmount, setBuyInAmount] = useState(null); const [numberOfChips, setNumberOfChips] = useState(5); const [totalChipsCount, setTotalChipsCount] = useState([]); - const handleSave = () => { if (buyInAmount === null) { Alert.alert("Error", "Please select a valid buy-in amount"); + } else { + Alert.alert( + "Success", + `Buy-in amount set to ${buyInAmount} for ${playerCount} players` + ); } }; - return ( Poker Chip Helper - - - - +