Skip to content

Instantly share code, notes, and snippets.

@Nailik
Last active July 17, 2020 12:09
Show Gist options
  • Save Nailik/c3d7004046c816945920027cf303e4a8 to your computer and use it in GitHub Desktop.
Save Nailik/c3d7004046c816945920027cf303e4a8 to your computer and use it in GitHub Desktop.
Flutter App Start
import 'package:flutter/material.dart';
void main() {
runApp(FlutterDemo());
}
class FlutterDemo extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MaterialApp(
home: Scaffold(
appBar: AppBar(
title: Text('Flutter Demo'),
),
body: Container(),
),
);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment