美文网首页Flutter
flutter 中用边框实现三角形

flutter 中用边框实现三角形

作者: NanaCti | 来源:发表于2021-01-12 17:32 被阅读0次

    Container(
      width: 24,
      height: 0,
      decoration: new BoxDecoration(
        border: Border(
          // 四个值 top right bottom left
          bottom: BorderSide(
              color: Colors.white,
              width: ScreenUtil().setHeight(16),
              style: BorderStyle.solid),
          right: BorderSide(
              color: Colors.transparent,
              width: 12,
              style: BorderStyle.solid),
          left: BorderSide(
              color: Colors.transparent,
              width: 12,
              style: BorderStyle.solid),
        ),
      ),
    ),
    
    

    相关文章

      网友评论

        本文标题:flutter 中用边框实现三角形

        本文链接:https://www.haomeiwen.com/subject/huseaktx.html