// the find
ckdevrel/flutter-examples
An ultimate cheatbook of curated designs
A reference README showing Flutter widget code snippets side-by-side with screenshots — layouts, buttons, text fields, and a handful of Material components. It's a visual index for developers who want to see what a widget looks like without spinning up a project, aimed squarely at beginners and developers coming from Android.
The side-by-side screenshot/code format works well for layout widgets where the visual output is the whole point. Covers the core layout primitives (Row, Column, Stack, Expanded, Flexible) with enough variants to actually understand how MainAxisAlignment and CrossAxisAlignment interact. The ConstrainedBox section with BoxConstraints.expand/tight/loose shown together is genuinely useful — that's a common confusion point. Screenshots are inline in the README so you don't need to clone anything.
Abandoned in June 2020 — everything here targets Flutter 1.x. FlatButton, RaisedButton, and MaterialButton are all deprecated and removed in current Flutter; anyone copying this code will hit compile errors immediately. Coverage is shallow and stops at Sliver List with no state management, navigation, async patterns, or anything beyond basic widget demos. No actual runnable project — it's all code fragments dumped in a README with no pubspec, so you can't run any of it. The description calls itself a 'cheatbook' but it's really just a layout sampler.