Skip to content

Instantly share code, notes, and snippets.

View awatson32's full-sized avatar

Audrey awatson32

View GitHub Profile
### 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:
import 'package:flutter/material.dart';
const Color darkBlue = Color.fromARGB(255, 18, 32, 47);
void main() {
runApp(MyApp());
}
class MyApp extends StatelessWidget {
@override
### 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:
@awatson32
awatson32 / main.dart
Last active June 22, 2022 20:04
expandable appbar
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;