flutter_material_showcase 1.0.0
flutter_material_showcase: ^1.0.0 copied to clipboard
Material Design components showcase for Flutter apps.
flutter_material_showcase #
Material Design components showcase for Flutter apps.
This project is a rip-off of Ataul's Material Design Components Showcase Android project, but in Flutter!
You can use this Flutter package to preview your ThemeData and see how it looks like with different Material Widgets.

Usage #
- Include the library in your project
pubspec.yaml:
todo
- Add the
MaterialShowcaseWidget somewhere in your app:
MaterialApp(
title: 'Flutter Demo',
theme: ThemeData(
primarySwatch: Colors.blue,
),
home: Scaffold(
body: ListView(
children: <Widget>[
MaterialShowcase(),
],
),
),
);
- Play with the different parameters in
ThemeDataand see how it looks like.
Contributing #
- Additions to the
MaterialShowcaseWidget are welcome. - Documentation improvements are welcome.
License #
MIT License
Copyright (c) 2019 Miguel Beltran