Skip to content

Instantly share code, notes, and snippets.

@lbnmahs
Created April 21, 2024 18:11
Show Gist options
  • Save lbnmahs/0158623a3385f4fa188f06cbe07d323b to your computer and use it in GitHub Desktop.
Save lbnmahs/0158623a3385f4fa188f06cbe07d323b to your computer and use it in GitHub Desktop.
Basic main.dart file
import 'package:flutter/material.dart';
void main() => runApp(const MyApp());
class MyApp extends StatelessWidget {
const MyApp({super.key});
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'Your app name',
home: Scaffold(
appBar: AppBar(
title: const Text('Your Title here'),
),
body: const Center(
child: Text('Hello World, of course'),
),
),
);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment