add empty flutter web package

This commit is contained in:
2026-02-24 11:31:09 +01:00
parent ae706c9a91
commit 0d1119b2af
14 changed files with 400 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
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!'))),
);
}
}