Skip to content

Instantly share code, notes, and snippets.

@RafaelBarbosatec
Created May 21, 2018 14:59
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/e3365cfebbebd5ae901eb71390ac070b to your computer and use it in GitHub Desktop.
Save RafaelBarbosatec/e3365cfebbebd5ae901eb71390ac070b to your computer and use it in GitHub Desktop.
class NoticeList extends StatefulWidget{
final state = new _NoticeListPageState();
@override
_NoticeListPageState createState() => state;
}
class _NoticeListPageState extends State<NoticeList>{
@override
Widget build(BuildContext context) {
return new Container();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment