Skip to content

Instantly share code, notes, and snippets.

View Ayu219's full-sized avatar
🏠
Working from home

Ayush Tomer Ayu219

🏠
Working from home
View GitHub Profile
import 'package:flutter/material.dart';
/// Entry point of the application.
void main() {
runApp(const MyApp());
}
/// [Widget] building the [MaterialApp].
class MyApp extends StatelessWidget {
const MyApp({super.key});