How to implement seat booking in Android?
I have this json response from the server:
[
{
"id": 12767236,
"rowNumber": "01",
"seatNumber": 1,
"status": "taken"
},
{
"id": 12767237,
"rowNumber": "01",
"seatNumber": 2,
"status": "available"
}
...
...
...
]
Basically it's a list of seats with a few properties, that's all the data I have. So, question is how do I show the seats and let user pick one like below? What component should I use?
<a...