This repository has been archived on 2024-10-16. You can view files and clone it, but cannot push or open issues or pull requests.
skyforce-app/lib/main.dart

21 lines
353 B
Dart
Raw Normal View History

2023-08-06 10:35:40 +02:00
import 'package:flutter/material.dart';
void main() {
runApp(const MainApp());
}
class MainApp extends StatelessWidget {
const MainApp({super.key});
@override
Widget build(BuildContext context) {
return const MaterialApp(
home: Scaffold(
body: Center(
child: Text('Hello World!'),
),
),
);
}
}