标签:package span body info isp copy source end get
// Copyright 2018 The Flutter team. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. import ‘package:flutter/material.dart‘; void main() => runApp(MyApp()); class MyApp extends StatelessWidget { @override Widget build(BuildContext context) { return MaterialApp( title: ‘Welcome to Flutter‘, home: Scaffold( appBar: AppBar( title: Text(‘Welcome to Flutter‘), ), body: Center( child: Text(‘Hello World‘), ), ), ); } }
运行效果
标签:package span body info isp copy source end get
原文地址:https://www.cnblogs.com/sea-stream/p/12148668.html