This file contains 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
### Keybase proof | |
I hereby claim: | |
* I am awatson32 on github. | |
* I am awatson32 (https://keybase.io/awatson32) on keybase. | |
* I have a public key ASBj34xBYay_-tFAtF-OMUuo942_7R3TlSsvQPEUQ82BRwo | |
To claim this, I am signing this object: |
This file contains 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
import 'package:flutter/material.dart'; | |
const Color darkBlue = Color.fromARGB(255, 18, 32, 47); | |
void main() { | |
runApp(MyApp()); | |
} | |
class MyApp extends StatelessWidget { | |
@override |
This file contains 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
### Keybase proof | |
I hereby claim: | |
* I am awatson32 on github. | |
* I am awatson_32 (https://keybase.io/awatson_32) on keybase. | |
* I have a public key ASC5zXalpZ1kBGPh5isyKPwfYE-jDPfRu0b5Lehysc6eygo | |
To claim this, I am signing this object: |
This file contains 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
import 'package:flutter/material.dart'; | |
void main() { | |
runApp(MyApp( | |
items: List<String>.generate(40, (i) => 'Item $i'), | |
)); | |
} | |
class MyApp extends StatefulWidget { | |
final List<String> items; |