Skip to content

Instantly share code, notes, and snippets.

@zontyp
Created July 29, 2020 13:05
Show Gist options
  • Save zontyp/a058253f0d1823eaa13d7e93901456b6 to your computer and use it in GitHub Desktop.
Save zontyp/a058253f0d1823eaa13d7e93901456b6 to your computer and use it in GitHub Desktop.
import 'package:flutter/material.dart';
void main() {
runApp(new HelloWorld());
}
class HelloWorld extends StatefulWidget {
@override
_HelloWorldState createState() => _HelloWorldState();
}
class _HelloWorldState extends State<HelloWorld> {
@override
Widget build(BuildContext context) {
return MaterialApp(
home: Scaffold(
appBar: AppBar(
title: Text('Hello World Example'),
),
body: Text('Hello World Example'),
),
);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment