Skip to content

Instantly share code, notes, and snippets.

@SteveOye
Created March 9, 2023 22: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 SteveOye/01fb8f4a5e0329df43b9fbd70d6059f2 to your computer and use it in GitHub Desktop.
Save SteveOye/01fb8f4a5e0329df43b9fbd70d6059f2 to your computer and use it in GitHub Desktop.
class SampleWidget extends StatelessWidget {
const SampleWidget({super.key});
@override
Widget build(BuildContext context) {
return const SomeWidget();
}
//helper method
Widget SomeWidget(){
return Container();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment