Stylish for Dart/Flutter

publisher version likes points popularity


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:

  1. Depend on it

    • Add stylish under dependencies in the pubspec.yaml file

      dependencies:
        stylish: any
      
    • Or run this command

      flutter pub add stylish
      
  2. Install it

    • From the terminal: Run

      flutter pub get
      
  3. Import it

    • Add a corresponding import statement in the source code

      import 'package:stylish/stylish.dart';
      

Usage

This package can be used with any UI element.

Container(
    color: Styles.c.dodgerBlue,
),

Libraries

stylish
A set of UI elements and patterns with rules and guidelines