flutter demo 输出hello word
import 'package:flutter/material.dart'; void main() => runApp(const MyApp()); class MyApp extends StatelessWidget { const MyApp({Key? key}) : super(key: key); @override Widget build(BuildContext context) { return MaterialApp( title: 'myAPP', debugShowCheckedModeBanner: false, home: Scaffold( appBar: AppBar( title: const Text("这是标题"), centerTitle: true, ), body: const Text("hello word"), ), ); } }