flutter 显示来自网上的图片

Posted sea-stream

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了flutter 显示来自网上的图片相关的知识,希望对你有一定的参考价值。

 

如图

技术图片

 

 

 

import package:flutter/material.dart;

void main() => runApp(new MyApp());

class MyApp extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    var title = Web Images;

    return new MaterialApp(
      title: title,
      home: new Scaffold(
        appBar: new AppBar(
          title: new Text(title),
        ),
        body: new Image.network(
          https://www.baidu.com/img/bd_logo1.png,
        ),
      ),
    );
  }
}

 

以上是关于flutter 显示来自网上的图片的主要内容,如果未能解决你的问题,请参考以下文章