繁体   English   中英

flutter - 如何将平铺图像添加到我的 BoxDecoration

[英]flutter - how to add a tiled image to my BoxDecoration

我创建了一个有效的 alpha 滑块控件。 滑块 alpha 渐变效果很好。

现在,我想为我的滑块创建一个方格背景。 我希望滑块具有方格背景,看起来像这样(请注意方格的圆角):

这就是我希望我的滑块小部件的外观

滑块的大小是可变的,所以我想我需要平铺一个小的棋盘格图案 PNG。

这是我当前的代码:

      gradient = LinearGradient(
          colors: colors,
          begin: Alignment.topCenter,
          end: Alignment.bottomCenter);

    Widget content = Positioned(
      left: left,
      top: top,
      child: Container(
        width: barWidth,
        height: barHeight,
        decoration: BoxDecoration(
          border: Border.all(color: Colors.black),
            borderRadius:
                BorderRadius.all(Radius.circular(10)),
            gradient: gradient),
            
      ),
    );

我想我需要使用“ImageShader”,但我无法让它工作。

您可以在当前布局的堆栈中使用背景的 PNG。

使用堆栈:

  gradient = LinearGradient(
      colors: colors,
      begin: Alignment.topCenter,
      end: Alignment.bottomCenter);

Widget content = Positioned(
  left: left,
  top: top,
  child: Stack(
    children: [
  Container(//same width & height & corderRadius
    child: Image.asset(// with repeat: ImageRepeat.repeatX,
  ),
  Container(
    width: barWidth,
    height: barHeight,
    decoration: BoxDecoration(
      border: Border.all(color: Colors.black),
        borderRadius:
            BorderRadius.all(Radius.circular(10)),
        gradient: gradient),
        
  ),
    ],
);

创建方格图案的一小部分(2 个正方形宽)并将重复图像添加到BoxDecoration

Widget content = Positioned(
  left: left,
  top: top,
  child: Container(
    width: barWidth,
    height: barHeight,
    decoration: BoxDecoration(
      border: Border.all(color: Colors.black),
      borderRadius: BorderRadius.all(Radius.circular(10)),
      gradient: gradient,
      image: DecorationImage(
        repeat: ImageRepeat.repeatX,
        image: AssetImage('asset_name'),
      ),
    ),
  ),
);

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM