Skip to content

Instantly share code, notes, and snippets.

@subramanian42
Last active September 30, 2022 18:25
Show Gist options
  • Save subramanian42/096900c048e5af4692f9d3da0fa5b219 to your computer and use it in GitHub Desktop.
Save subramanian42/096900c048e5af4692f9d3da0fa5b219 to your computer and use it in GitHub Desktop.
main
import 'package:flutter/material.dart';
void main() {
runApp(const MyApp());
}
class MyApp extends StatelessWidget {
const MyApp({Key? key}) : super(key: key);
@override
Widget build(BuildContext context) {
return MaterialApp(home:Container());
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment