Skip to content

Instantly share code, notes, and snippets.

@advait-bhitkar
Created June 21, 2025 14:29
Show Gist options
  • Save advait-bhitkar/d498c2b5fab3bfdec53af515c5d98b81 to your computer and use it in GitHub Desktop.
Save advait-bhitkar/d498c2b5fab3bfdec53af515c5d98b81 to your computer and use it in GitHub Desktop.
Flutter Pen Gist
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(
home: Scaffold(
appBar: AppBar(
title: const Text('Flutter Pen'),
),
body: const Center(
child: Text('Hello, world!'),
),
),
);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment