Skip to content

Latest commit

 

History

History
38 lines (34 loc) · 1.52 KB

material-design-catalog.md

File metadata and controls

38 lines (34 loc) · 1.52 KB
layout title extra_css sidebar permalink
page
Material Design Catalog
/css/catalog.css
home_sidebar
/material-design-catalog/

This page catalogs Flutter’s implementation of UI components from Google’s Material Design Specification. You can see many of the material design widgets in action in our Flutter Gallery demo app.

To lay widgets out within your application, use basic widgets such as Row, Column, Stack, or Block.

{% for comp in site.data.catalog %}

{{comp.comp_name}}

{{comp.comp_desc}} {% if comp.widget_name != '' %} The {{comp.widget_name}} widget implements this component. {% endif %} {{comp.extra_html}}

Sample usage | Documentation | Interface design guidelines

{% endfor %}