Skip to content

Instantly share code, notes, and snippets.

@Chralu
Created July 25, 2022 16:19
Show Gist options
  • Save Chralu/f73eb0fbe9140766112d75844993776c to your computer and use it in GitHub Desktop.
Save Chralu/f73eb0fbe9140766112d75844993776c to your computer and use it in GitHub Desktop.
Flutter101 - Block body

Flutter101 - Block body

Created with <3 with dartpad.dev.

// Copyright (c) 2022, TheTribe.io
void main() {
final helloWorldText = getHelloWorldText();
print(helloWorldText);
}
String getHelloWorldText() {
return "Bonjour tout le monde";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment