'How to make a large distance between widgets

Tell me how to correctly make a large indent between RedeemButton() and button ? I need to make such an indent as shown in the screenshot.

body

Column(childre: [
            const RedeemButton(
                textStyle: constants.Styles.smallBookTextStyleWhite,
                buttonStyle: constants.Styles.smallMediumTextStyleWhite),
            const Padding(
              padding: EdgeInsets.only(bottom: 50),
              child: Text(
                'Hello',
                style: TextStyle(
                  color: Colors.white,
                ),
              ),
            ),

enter image description here



Solution 1:[1]

As you are using a Column Widget, to separate your 2 children you can use the mainAxisAlignment set to spaceBetween, like this:

    Column(
            mainAxisAlignment: MainAxisAlignment.spaceBetween,
            children: [...

If you want a spacific distance number, you can set a SizedBox Widget between them, and set a height that fits your need in a height property

Solution 2:[2]

You can use Spacer widget if you want.

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
Solution 2 MD. Saffan Alvy