示例代码:
import 'package:flutter/cupertino.dart';
import 'package:flutter/material.dart';
void main() {
runApp(MyApp());
}
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return CupertinoApp(
title: 'MyApp',
home: Scaffold(
appBar: AppBar(
title: Text('MyApp'),
),
body: Center(
child: Text(
'Hello, World!',
style: TextStyle(fontSize: 24.0),
),
),
),
);
}
}