stylish 0.1.0
stylish: ^0.1.0 copied to clipboard
A set of UI elements and patterns with rules and guidelines.
Stylish for Dart/Flutter #
A set of UI elements and patterns with rules and guidelines.
Features #
Styling UI Library
Getting started #
To add the package, stylish, in a project:
-
Depend on it
-
Add
stylishunderdependenciesin thepubspec.yamlfiledependencies: stylish: any -
Or run this command
flutter pub add stylish
-
-
Install it
-
From the terminal: Run
flutter pub get
-
-
Import it
-
Add a corresponding
importstatement in the source codeimport 'package:stylish/stylish.dart';
-
Usage #
This package can be used with any UI element.
Container(
color: Styles.c.dodgerBlue,
),