Skip to content

Instantly share code, notes, and snippets.

@MarcinusX
Created September 3, 2018 04:32
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save MarcinusX/849672b042593a62709f4b9f6ebd7718 to your computer and use it in GitHub Desktop.
Save MarcinusX/849672b042593a62709f4b9f6ebd7718 to your computer and use it in GitHub Desktop.
import 'package:flight_search/home_page.dart';
import 'package:flutter/material.dart';
void main() => runApp(new MyApp());
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return new MaterialApp(
title: 'Flight Search',
theme: new ThemeData(
primarySwatch: Colors.red,
),
home: new HomePage(),
);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment