Skip to content

Instantly share code, notes, and snippets.

@RafaelBarbosatec
Last active May 21, 2018 17:05
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/e57872c5242b004932872526e6fbee6a to your computer and use it in GitHub Desktop.
Save RafaelBarbosatec/e57872c5242b004932872526e6fbee6a to your computer and use it in GitHub Desktop.
class Notice extends StatelessWidget{
var _img;
var _title;
var _date;
var _description;
Notice(this._img,this._title,this._date,this._description);
BuildContext _context;
@override
Widget build(BuildContext context) {
this._context = context;
return new Container();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment