Skip to content

Instantly share code, notes, and snippets.

@ritshpatidar
Created February 6, 2019 17:13
Show Gist options
  • Save ritshpatidar/fbf2c43f9e397ecd6f2107b80166e62e to your computer and use it in GitHub Desktop.
Save ritshpatidar/fbf2c43f9e397ecd6f2107b80166e62e to your computer and use it in GitHub Desktop.
simple hello world in flutter
import 'package:flutter/material.dart';
void main() => runApp(MyApp());
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MaterialApp(
title: "FlutterApp",
home: Text("Hello World!"),
);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment