maestrya 0.0.2
maestrya: ^0.0.2 copied to clipboard
A Flutter package to automate the creation of Widgets with Material using JSON/Objects.
Maestrya (Flutter package) #
A Flutter package to automate render widgets (material) using JSON/Objects.
Install #
To use this package, add maestrya
as a dependency in your pubspec.yaml file.
Using #
Add in your pubspec.yaml
dependencies:
flutter:
sdk: flutter
maestrya: ^0.0.1
copied to clipboard
Import the library via
import 'package:maestrya/maestrya.dart';
copied to clipboard
Use only
List<Widget> maestryaWidgets = Maestrya().render(YOUR_OBJECT);
copied to clipboard
to return all widgets
Show example in another project