From 7111f1202c7c5f77103879105029149ff16bce21 Mon Sep 17 00:00:00 2001 From: Anurag Bhandari Date: Sat, 31 Aug 2019 14:33:27 +0530 Subject: [PATCH] Fix typos in README.md * s/onClick/onPressed * s/expanded/Expanded --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 774fdf1..ddeb1ca 100644 --- a/README.md +++ b/README.md @@ -19,9 +19,9 @@ We’re going to make a Las Vegas dice app. You can make the die roll at the pre - How to use Flutter stateless widgets to design the user interface. - How to use Flutter stateful widgets to update the user interface. - How to change the properties of various widgets. -- How to use onClick listeners to detect when buttons are pressed. +- How to use onPressed listeners to detect when buttons are pressed. - How to use setState to mark the widget tree as dirty and requiring update on the next render. -- How to use expanded to make widgets adapt to screen dimensions. +- How to use Expanded to make widgets adapt to screen dimensions. - Understand and use string interpolation. - Learn about basic dart programming concepts such as data types and functions. - Code and use gesture controls.