flutter 如何给抖动按钮添加边框?

ukqbszuj  于 2023-01-27  发布在  Flutter
关注(0)|答案(6)|浏览(200)

我最近才开始使用flutter,到目前为止我很喜欢它,但是我在一些UI的修改上遇到了麻烦。任何帮助都是非常感谢的!
我的目标是得到一个圆形按钮,有一个蓝色背景的图标,但然后有一个边界周围的外部是一个深蓝色。有图片附件。
我的方法是:
1.得到一个圆形的蓝色按钮。
1.在按钮上放个图标。
1.添加边框。
我在第三步卡住了,因为我不知道如何添加边框,或者如果它甚至是可能的,因为我的方法来处理这个问题。具体的颜色对我来说并不重要,我会改变主题后。
这是我目前拥有的代码:

var messageBtn = new Row(
  children: <Widget>[
    new Padding(
      padding: const EdgeInsets.all(20.0),
      child: new RawMaterialButton(
        onPressed: _messages,
        child: new Padding(
          padding: const EdgeInsets.all(20.0),
          child: new Icon(
            Icons.message,
            size: 30.0,
            color: Colors.white,
          ),
        ),
        shape: new CircleBorder(),
        fillColor: Colors.deepPurple,
      ),
    ),
    new Padding(
        padding: const EdgeInsets.all(8.0),
        child: new Text(
          'Send Messages',
          style: new TextStyle(
            fontSize: 20.0,
          ),
        )),
  ],
);

它产生如下结果:

我想要这个:

y53ybaqx

y53ybaqx1#

嗨,凯萨琳,欢迎!
您可以通过更深入地研究组成MaterialButton的小部件来实现您想要的结果。
首先需要Ink小部件,它使用BoxDecoration提供了更灵活的样式。
Ink可以包含一个InkWell小部件,它可以识别onTap并绘制飞溅效果。默认情况下,飞溅会持续到包含框的边缘,但您可以通过为InkWell指定一个非常大的borderRadius来使其呈圆形。
下面是您要查找的按钮的示例:

Material(
  type: MaterialType.transparency, //Makes it usable on any background color, thanks @IanSmith
  child: Ink(
    decoration: BoxDecoration(
      border: Border.all(color: Colors.indigoAccent, width: 4.0),
      color: Colors.indigo[900],
      shape: BoxShape.circle,
    ),
    child: InkWell(
      //This keeps the splash effect within the circle
      borderRadius: BorderRadius.circular(1000.0), //Something large to ensure a circle
      onTap: _messages,
      child: Padding(
        padding:EdgeInsets.all(20.0),
        child: Icon(
          Icons.message,
          size: 30.0,
          color: Colors.white,
        ),
      ),
    ),
  )
),

结果是这样的:

qybjjes1

qybjjes12#

只需将一个IconButton封装到一个Container中,并将其decoration设置为:

Container(
  decoration: BoxDecoration(
    border: Border.all(color: Colors.blue, width: 4),
    color: Colors.yellow,
    shape: BoxShape.circle,
  ),
  child: IconButton(
    iconSize: 56,
    icon: Icon(Icons.check),
    onPressed: () {},
  ),
),
xriantvc

xriantvc3#

可以使用带边框的浮动操作按钮:

FloatingActionButton(
                              mini: false,
                              backgroundColor: Colors.blue.shade900,
                              splashColor: Colors.black,
                              onPressed: () {
                                logOutDialog(context);
                              },
                              hoverElevation: 1.5,
                              shape: StadiumBorder(
                                  side: BorderSide(
                                      color: Colors.blue, width: 4)),
                              elevation: 1.5,
                              child: Icon(
                                Icons.logout,
                                color: _foregroundColor,
                              ),
                            )
rn0zuynd

rn0zuynd4#

在Flutter2中,存在TextButton

TextButton(
  style: ButtonStyle(
   side: RedSelectedBorderSide(),
  ),
  child: Text(
    "Button"
  ),
  onPressed: (){}
);

其中RedSelectedBorderSide()为:

class RedSelectedBorderSide extends MaterialStateBorderSide {
  @override
  BorderSide resolve(Set<MaterialState> states) {
    if (states.contains(MaterialState.selected)) {
      return BorderSide(
        width: 2,
        color: Colors.red,
      ); // 
    }
    return null;// Defer to default value on the theme or widget.
  }
}
uqxowvwt

uqxowvwt5#

对于TextButton
style内部,将sideMaterialStateProperty一起使用,将BorderSide一起使用。

TextButton(
  style: ButtonStyle(
   side: MaterialStateProperty.all(
     BorderSide(width: 1, color: Colors.black),
   ),
  ),
  child: Text(
    "My Button"
  ),
  onPressed: (){}
);
hivapdat

hivapdat6#

我来这里想知道如何添加边框到"库比蒂诺按钮"。我会把我的发现张贴在这里。希望它会帮助别人。
结果:

代码:

import 'package:flutter/cupertino.dart';

...

CupertinoButton(
    minSize: 20,
    padding: const EdgeInsets.all(0), // remove button padding
    color: CupertinoColors.white.withOpacity(0),  // use this to make default color to transparent
    child: Container(   // wrap the text/widget using container
      padding: const EdgeInsets.all(10), // add padding
        decoration: BoxDecoration(
          border: Border.all(
            color: const Color.fromARGB(255, 211, 15, 69),
            width: 1,
          ),
          borderRadius: const BorderRadius.all(Radius.circular(10)),  // radius as you wish
        ),
      child: Wrap(
         children: const [
           Icon(CupertinoIcons.videocam_circle_fill, color: CupertinoColors.systemPink,),
           Text(" Upload video", style: TextStyle(color: CupertinoColors.systemPink),)
         ],
       ),
    ),
    onPressed: () {
      // on press action
    },
),

相关问题