Tobi
July 29, 2025, 8:51pm
1
hey i am trying to make a poker game with app inventor i already created the deck my problem is that i am not able to remove the dealt card from the deck to assign it to a player any ideas?
Taifun
July 29, 2025, 9:47pm
2
what about doing a search in the community?
Have you read these answers?
How difficult would it be to create a poker application? I am new to application development. But your platform was recommended to me as simple and understandable. But I understand that the mechanics of such an application are complex, so I need to make it as realistic as possible for a beginner.
Taifun
Tobi
July 29, 2025, 10:09pm
3
yeah i view that answer but i cant find the answers i need
Taifun
July 29, 2025, 11:02pm
4
Do you store the deck as a list?
Learn to work with lists...
(copied from imagnity.com , courtesy of @Saj )
List Blocks On App Inventor
by Sajal Dutta | app-inventor , tutorials | 102 comments
List is a necessity in almost every app regardless of what programming language you use. This is the easiest way to create and manipulate a set of values/items/elements in an ordered fashion. Please go over the reference before we start. In this tutorial, we will learn how to create a list, add new items to a list, display list items, replace an item in the list, re…
What about elaborating a bit about how you designed the game?
See also
Before you go further in your app, you should make sure you have a good data model for your card game. Data models are like the bones of your app.
Time spent learning data models will not be wasted. Data model knowledge never goes obsolete, unlike the programming language du jour.
Taifun