Skip to content
Advertisement

How to display all products by category and sub-category wise in a single screen?

I have a list of products in my database as follows: Database Structure

I want the output as follows: App output

I got the data by sending http request to the script.php :

JavaScript

but how do I achieve the output dynamically? as of now, i have hardcoded the widgets. And also i tried some way of outputting,output error but the categories and the sub categories are repeating many times as in the pic above. Here is the logic i tried. Any help would be really really helpful, as i am completely a beginner in flutter.Thanks in advance:

JavaScript

Advertisement

Answer

I was able to solve it by changing the logic and requested data structure a little bit, and adding the widgets accordingly. Here, if we add our widgets instead of those print statements, we could achieve the output in the above question. DartPad example
No.1 – Create category and sub-category Map:-

JavaScript

No.2 – Create Dummy List of products:-

JavaScript

No.3 – Create a Loop which will display supplied widgets automatically by categories:-

JavaScript
User contributions licensed under: CC BY-SA
9 People found this is helpful
Advertisement