└── README.MD /README.MD: -------------------------------------------------------------------------------- 1 | # Flutter Material Cheat Sheet 📝 2 | 3 | Welcome to the cheat sheet for the Flutter Material package! This document should give you an overview of the different naming (there has been a change in the Material spec in 2018), where each Material widget uses which text style and which colors... 4 | 5 | ## Typography 6 | 7 | When you use MaterialApp without editing the default configuration, your app will use the following typography: 8 | 9 | ![Matrial Typography](https://user-images.githubusercontent.com/11478053/58477455-dc4fd980-8153-11e9-9431-d96c2e7de091.jpg) 10 | 11 | As you can see, Flutter uses an older specification for the naming (they kept the old one in order to be backwards compatible), e.g. `headline1` is `display4` or `body1` equals `body2` - simply compare the `Flutter API` column. 12 | 13 | ## Colors 14 | 15 | Work in progress... 🚧 16 | --------------------------------------------------------------------------------