Skip to content

Instantly share code, notes, and snippets.

@Nash0x7E2
Created March 17, 2018 03:30
Show Gist options
  • Save Nash0x7E2/f32e57f4e7f73011cb66a6b062c589ca to your computer and use it in GitHub Desktop.
Save Nash0x7E2/f32e57f4e7f73011cb66a6b062c589ca to your computer and use it in GitHub Desktop.
import 'package:flutter/material.dart';
void main() {
runApp(new MaterialApp(
home: new Landing(),
));
}
class Landing extends StatelessWidget {
@override
Widget build(BuildContext context) {
return new Scaffold(
body: new LandingBody(),
appBar: new AppBar(
title: new Text('Welcome'),
elevation: 0.0,
),
);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment