Skip to content

Instantly share code, notes, and snippets.

View lbnmahs's full-sized avatar
🗿

LbnMahs lbnmahs

🗿
View GitHub Profile
@lbnmahs
lbnmahs / main.dart
Created April 21, 2024 18:11
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(