Flutter Notes (1) hello world

hello world

import 'package:flutter/material.dart';

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

class MyApp extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Flutter Demo',
      home: Scaffold(
          appBar: AppBar(
            title: Text('welcome to Flutter'),
          ),
          body: Center(
            child: Text('hello world'),
          )),
    );
  }
}

 

Guess you like

Origin www.cnblogs.com/ronle/p/11258349.html