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',
        ),
      ),
    );
  }
}

 

posted @ 2020-01-06 00:29  anobscureretreat  阅读(240)  评论(0编辑  收藏  举报