Skip to content

Instantly share code, notes, and snippets.

@rrousselGit
Created December 5, 2018 15:41
Show Gist options
  • Select an option

  • Save rrousselGit/7863cc3a1902dce976a1f80d636312c2 to your computer and use it in GitHub Desktop.

Select an option

Save rrousselGit/7863cc3a1902dce976a1f80d636312c2 to your computer and use it in GitHub Desktop.
functional_widget2
part of 'main.dart';
class StatelessExample extends StatelessWidget {
const Foo({Key key, this.foo, this.bar}) : super(key: key);
final int foo;
final int bar;
@override
Widget build(BuildContext _context) {
return statelessExample(
foo: foo,
bar: bar,
);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment