Created
March 9, 2023 22:59
-
-
Save SteveOye/01fb8f4a5e0329df43b9fbd70d6059f2 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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