美文网首页
flutter背景图

flutter背景图

作者: 你妹妹的灵魂 | 来源:发表于2020-02-03 17:51 被阅读0次
    Scaffold(
          body: Container(
            decoration: BoxDecoration(
              image: DecorationImage(
                image: AssetImage("images/bg.jpg"),
                fit: BoxFit.cover,
              ),
            ),
            child: Center(
              child: Text('Hello Wolrd', style: TextStyle(fontSize: 22.0, color: Colors.white),),
            ),
          ),
    );
    

    在pubspec.yaml中的flutter部分添加如下内容:

    assets:
        - images/bg.jpg
    

    相关文章

      网友评论

          本文标题:flutter背景图

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