Last updated:
0 purchases
flutter material showcase
flutter_material_showcase #
Material Design components showcase for Flutter apps.
This project is based on Ataul's Material Design Components Showcase Android project, but for Flutter!
You can use this Flutter package to preview your ThemeData and see how it looks like with different Material Widgets.
Usage #
Add the MaterialShowcase Widget somewhere in your app:
MaterialApp(
title: 'Flutter Demo',
theme: ThemeData(
primarySwatch: Colors.blue,
),
home: Scaffold(
body: ListView(
children: <Widget>[
MaterialShowcase(),
],
),
),
);
copied to clipboard
Then play with the different parameters in ThemeData and see how it looks like.
Contributing #
Additions to the MaterialShowcase Widget are welcome.
Documentation improvements are welcome.
License #
MIT License
Copyright (c) 2019 Miguel Beltran
copied to clipboard
Miguel Beltran - beltran.work
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.