Skip to content

Instantly share code, notes, and snippets.

@RafaelBarbosatec
Last active May 21, 2018 16:06
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 RafaelBarbosatec/54124382501402c2230313264ba0408e to your computer and use it in GitHub Desktop.
Save RafaelBarbosatec/54124382501402c2230313264ba0408e to your computer and use it in GitHub Desktop.
import 'package:flutter/material.dart';
import 'widgets/home.dart';
import 'NoticeList.dart'
void main() => runApp(new NewsApp());
class NewsApp extends StatelessWidget {
// This widget is the root of your application.
@override
Widget build(BuildContext context) {
return new MaterialApp(
title: 'Flutter News',
theme: new ThemeData(
primarySwatch: Colors.blue,
),
home: new NoticeList(),
);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment