I have list of fruit information i.e. fruit names. One fruit is correspond with another list i.e. vitamin, colour which is correspond with details information of the fruit i.e. what vitamin it contains, what is the image of the fruit). Now from this page it will navigate some other information (i.e. if user has been eaten today or not).
So the problem I'm facing is what shall I consider when I design the data structure.
First page:
Apple
Orange
Second page:
Pink
Vitamic
Image
Each item in this page is correspond with specific information of previous page item, here just showing example information for Apple
Third page
Apple-> I have eaten today | I have not eaten today
User will be allowed to see the third page with corresponding to first page item. For example. If you mark that you ate apple today, then it update the third page as "eaten", but if you did not eat apple today then it should not be shown. So basically each fruit item correspond with if user has been eaten or not.
Please suggest me how shall I design my DB and list view structure? is that one row item will corresponding with one table. Please share me any tutorial or sample code. Thank you very much.