Skip to content

Instantly share code, notes, and snippets.

View MuhamadHaydar's full-sized avatar
🥰
I love to work Remotely

Muhamad haydar MuhamadHaydar

🥰
I love to work Remotely
View GitHub Profile
@simoales
simoales / main.dart
Last active May 8, 2024 17:58
A very basic main.dart file, a good starting point for any Flutter app.
import 'package:flutter/material.dart';
void main() => runApp(MyApp());
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'Your app name',
home: Scaffold(