Skip to content

G1J0SHI/stylish

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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,
),