标签:controls com www baidu ESS widget span tle info
如图
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‘, ), ), ); } }
标签:controls com www baidu ESS widget span tle info
原文地址:https://www.cnblogs.com/sea-stream/p/12154464.html