orlikraf / flutter-hexagon

MIT License
30 stars 17 forks source link

How to iterate hexagon in a hexagon grid using a list #20

Open devhuma opened 2 years ago

devhuma commented 2 years ago

I have an object list like below

var subjects = [ {'name': 'chemistry', 'rating': 5}, {'name': 'biology', 'rating': 5}, {'name': 'maths', 'rating': 5}, ];

I want create a hexagon grid by using above list of subjects. Each hexagon should contain the course name and rating inside.

Final output should look like this image