import 'package:flutter/material.dart';
import 'package:english_words/english_words.dart';
void main() => runApp(MyApp());
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
// final worldPair = WordPair.random();
return const MaterialApp(
title: 'Startup Name Generator',
home: RandomWords(),
);
// return MaterialApp(
// title: 'Welcome to Flutter',
// home: Scaffold(
// appBar: AppBar(
// title: const Text('Welcome to Flutter'),
// ),
// body: const Center(
// // child: Text(worldPair.asPascalCase)
// child: RandomWords(),
// ),
// ),
// );
}
}
// 分析
// Material是一种标准的移动端和Web端的视觉设计语言, https://m2.material.io/guidelines/
// 如果应用程序正在运行,使用按钮 ⚡ 更新正在运行的App
// 每次【单机热重载 or 保存项目】的时候都会在正在运行的应用程序中随机选择不同的文字
// 添加一个有状态的部件(Stateful Widget)
//
标签:example01,RandomWords,return,title,widget,final,const,Flutter
From: https://www.cnblogs.com/openmind-ink/p/17702114.html