颤振 ||在颤动中为 floatingActionButton 填充

Flutter || Padding for floatingActionButton in flutter

在我的 flutter 项目中,我使用了一个 floatingActionButton,我想添加一个填充,但我不知道如何用我的代码制作树。非常感谢任何帮助。

这是我的代码:

 floatingActionButton: Visibility(
              visible: buttonshow,
              child: FloatingActionButton(
                onPressed: () {
                  scrollToTop();
                },
                shape: const StadiumBorder(
                    side: BorderSide(
                        color: Color(0xff135888), width: 2.5)),
                backgroundColor: Colors.transparent,
                elevation: 0.0,
                child: const Icon(
                  Icons.keyboard_arrow_up, color: Color(0xff135888),
                  size: 28.0,),
                mini: true,

              ),
            ),

使用展开的小部件包裹您的可见性。

更新代码:

floatingActionButton: Padding(
  padding: const EdgeInsets.all(8.0),
  child: Visibility(
    visible: buttonshow,
    child: FloatingActionButton(
      onPressed: () {
        scrollToTop();
      },
      shape: const StadiumBorder(
          side: BorderSide(color: Color(0xff135888), width: 2.5)),
      backgroundColor: Colors.transparent,
      elevation: 0.0,
      child: const Icon(
        Icons.keyboard_arrow_up,
        color: Color(0xff135888),
        size: 28.0,
      ),
      mini: true,
    ),
  ),
),