From 1e8a6233b8c50fb0ad429d91e2937a7917915347 Mon Sep 17 00:00:00 2001 From: xengineering Date: Mon, 22 Dec 2025 21:25:02 +0100 Subject: Create flutter project This was done using the following command. flutter create \ --description "Sia app" \ --org "eu.xengineering" \ --project-name "sia_app" \ --platforms linux,android \ --empty \ . --- lib/main.dart | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 lib/main.dart (limited to 'lib') diff --git a/lib/main.dart b/lib/main.dart new file mode 100644 index 0000000..a725658 --- /dev/null +++ b/lib/main.dart @@ -0,0 +1,20 @@ +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!'), + ), + ), + ); + } +} -- cgit v1.2.3-70-g09d2