import "package:flutter/material.dart"; void main() { runApp(const Myapp()); } class Myapp extends StatelessWidget{ const Myapp({super.key}); @override Widget build(BuildContext context) { return MaterialApp( title: "Readful", theme: ThemeData(primarySwatch: Colors.blue), home: Scaffold( appBar: AppBar(title: const Text('readful 电子书阅读器')), body: const Center(child: Text('欢迎使用 readful')), ), ); } }