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

 

 

posted @ 2022-10-19 21:44  伴月阁  阅读(46)  评论(0编辑  收藏  举报