Reputation: 15
I was wondering if there is any solution or way to implement 3d designs roadmap in flutter. For example like a design below which is a horizontal scrollable page that contains dynamic elements and the number of elements in the screen can be dynamic. Can any one suggest me how to do it and give me hints on how to implement such design?
Upvotes: 0
Views: 150
Reputation: 17792
Use a stack The children of stack will be
Horizontal singleChildScrollView will contain another stack which will hold the following
Upvotes: 1