2023-05-27 21:56:48 +08:00

31 lines
542 B
Dart

import 'package:flutter/material.dart';
import 'package:pocketpy/pocketpy.dart';
void main() {
runApp(const MaterialApp(home: MyApp()));
}
class MyApp extends StatefulWidget {
const MyApp({super.key});
@override
State<MyApp> createState() => _MyAppState();
}
class _MyAppState extends State<MyApp> {
@override
void initState() {
test();
super.initState();
}
@override
Widget build(BuildContext context) {
return const Scaffold(
body: Center(
child: Text("Hello World!"),
),
);
}
}