A set of UI elements and patterns with rules and guidelines.
Styling UI Library
To add the package, stylish
, in a project:
-
Depend on it
-
Add
stylish
underdependencies
in thepubspec.yaml
filedependencies: stylish: any
-
Or run this command
flutter pub add stylish
-
-
Install it
-
From the terminal: Run
flutter pub get
-
-
Import it
-
Add a corresponding
import
statement in the source codeimport 'package:stylish/stylish.dart';
-
This package can be used with any UI element.
Container(
color: Styles.c.dodgerBlue,
),