'How to get indent between image and appbar in Flutter app?

Here is the code without body of the widget:

 Column(
    children: [
        Material(
            elevation: 0,
            child: Image.asset(
            i.first,
            fit: BoxFit.fitWidth,
            ),
        ),
        SizedBox(
            width: 130,
            child: FittedBox(
            fit: BoxFit.fitWidth,
            child: Padding(
                padding: const EdgeInsets.all(30.0),
                child: Text(
                i.last
                ),
            ),
            ),
        ),
    ],

Need to add space between appbar and image.

How can i achieve additional space between image and appbar widgets?



Solution 1:[1]

You can use Padding Widget:

body: Padding(
        padding: const EdgeInsets.all(8.0),
        child: GridView.count(
          crossAxisCount: 2,
          children: [
            ...myImageAndCaption.map(
              (i) => Column(
                mainAxisSize: MainAxisSize.min,
                children: [
                  Material(
                    elevation: 0,
                    child: Image.asset(
                      i.first,
                      fit: BoxFit.fitWidth,
                      height: 150,
                      width: 150,
                    ),
                  ),
                  SizedBox(
                    width: 130,
                    child: FittedBox(
                      fit: BoxFit.fitWidth,
                      child: Padding(
                        padding: const EdgeInsets.all(30.0),
                        child: Text(
                          i.last,
                          style: const TextStyle(
                            fontSize: 22,
                            letterSpacing: 1.0,
                            fontWeight: FontWeight.w600,
                            color: Colors.black,
                          ),
                        ),
                      ),
                    ),
                  ),
                ],
              ),
            ),
          ],
        ),
      ),

Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source
Solution 1 M Karimi