Skip to content

Instantly share code, notes, and snippets.

@redbluenat
Created February 10, 2019 18:59
Show Gist options
  • Save redbluenat/189b76a5e264e6e36cd34475240c5437 to your computer and use it in GitHub Desktop.
Save redbluenat/189b76a5e264e6e36cd34475240c5437 to your computer and use it in GitHub Desktop.
import 'package:Liquorie/screens/home/home_screen.dart';
import 'package:flutter/material.dart';
void main() => runApp(MyApp());
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'Liquorie',
theme: ThemeData(
primarySwatch: Colors.blue,
),
home: HomePage());
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment