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