Skip to content

Instantly share code, notes, and snippets.

@ritshpatidar
Created February 6, 2019 19:19
Show Gist options
  • Save ritshpatidar/ec9317b7d13eeb31fcbf7561de92fd95 to your computer and use it in GitHub Desktop.
Save ritshpatidar/ec9317b7d13eeb31fcbf7561de92fd95 to your computer and use it in GitHub Desktop.
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: Scaffold(
appBar: AppBar(
title: Text("FlutterHello"),
),
body: Center(
child: Text("Hello World!"),
),
),
);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment