I want to put text below the image in a gridview
What I want:
What I have:
I want the music title and the artist name below the music cover, not inside, how do I do this?
I want to put text below the image in a gridview
What I want:
What I have:
I want the music title and the artist name below the music cover, not inside, how do I do this?
2
Answers
Instead of using this in your container:
Why not simply use a Column widget? With this, you can insert multiple widgets inside the
children:
field (instead of sticking to 1 maximum at your container)So something that looks like that as example:
You can try this
Column(
children: const [
],
)