如何减少边距或抖动的填充

问题描述 投票:0回答:2

enter image description here

[嗨,我想知道是否有必要将边距或填充设置得更接近iconUser,我想让圆形状位于iconUser的顶部,尝试过设置边距或填充,但是仍然无法解决此问题。

   children: <Widget>[
                    SizedBox(width: 10,),
                    GestureDetector(
                      onTap: (){},
                      child: Image.asset("assets/ic_user_center.png",height: 16.0,width: 16.0,)
                    )
                  ],
                ),
                Padding(
                  padding: const EdgeInsets.only(bottom: 8.0),
                  child: Container(
                    width: 5.0,
                    height: 5.0,
                    decoration: BoxDecoration(
                      shape: BoxShape.circle,
                      color: Colors.white
                    ),
                  ),
                )
              ],
            ),
flutter flutter-layout
2个回答
1
投票

您可以使用Stack和“位置”来指定要放置该白点的位置


0
投票

enter image description here

© www.soinside.com 2019 - 2024. All rights reserved.