Add space between columns

I have a card with a column laying out several rows or individual items. I wanted the space to be more apparent between the elements but knew something like SizedBox() would add hard pixels that wouldn’t look right across platforms. Here is what I had

It was as simple as adding the AxisAlignment space evenly feature code!

child: Column(
                              mainAxisAlignment: MainAxisAlignment.spaceEvenly,
                              children: [
                                //* Center image of prayer poster
                                ClipOval(
                                  child: CachedNetworkImage(

Now It looks MUCH better on all platforms:
Desktop:

and mobile:
Screenshot 2023-01-27 at 9.35.44 AM