Skip to content

Instantly share code, notes, and snippets.

@angwrk
Created March 6, 2023 06:25
Show Gist options
  • Save angwrk/28443d450b199b93a6e016f8adc91af2 to your computer and use it in GitHub Desktop.
Save angwrk/28443d450b199b93a6e016f8adc91af2 to your computer and use it in GitHub Desktop.
mellow-toast-2564
void main() {
var counter = const [2, 3];
for (int i = 0; i < 5; i++) {
print('hello ${i + 1}');
}
counter = [2, 9];
bool isEqual = counter == [2, 9];
var nav = ["Home", "Furniture"];
if (isEqual) {
nav = [...nav, "James"];
}
print(nav);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment