Skip to content

Instantly share code, notes, and snippets.

@chamithchathuka
Created July 20, 2021 18:21
Show Gist options
  • Save chamithchathuka/45822d961568bc1364555c18c8779c1d to your computer and use it in GitHub Desktop.
Save chamithchathuka/45822d961568bc1364555c18c8779c1d to your computer and use it in GitHub Desktop.
import 'package:flutter/material.dart';
void main() => runApp(MyApp());
class MyApp extends StatefulWidget {
@override
_MyAppState createState() => _MyAppState();
}
class _MyAppState extends State<MyApp> {
@override
Widget build(BuildContext context) {
return Container();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment