美文网首页
flutter Container背景色渐变

flutter Container背景色渐变

作者: 司徒新新 | 来源:发表于2020-11-04 17:06 被阅读0次

    Container背景色渐变

     Container(
          child: Text('下一页'),
          decoration: BoxDecoration(
            gradient: LinearGradient(
              begin: Alignment.topLeft,
              end: Alignment.bottomRight,
              colors: [
                Colors.pinkAccent,
                Colors.white,
              ],
            ),
          ),
        );
    

    相关文章

      网友评论

          本文标题:flutter Container背景色渐变

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