Slikker Kit

Slikker Kit is a Flutter package which provides Slikker Design System components


UI Preview

The preview of the future version 1.1.0.

Alpha development changelog




Table of contents.

  1. Installing package
  2. Running example
  3. License



Installing package

  1. Run the command to add dependency and update dependencies:
$ flutter pub add slikker_kit

This will add a line like this to your package's pubspec.yaml (and run an implicit dart pub get):

dependencies:
   slikker_kit: ^1.1.0-alpha.22
  1. Import slikker_kit to your dart file:
import 'package:slikker_kit/slikker_kit.dart';
  1. Now you can use Slikker components! Example:
Widget button = SlikkerButton(
   padding: EdgeInsets.all(15),
   child: Text('Hello World!'),
   onTap: () => print('Yayyy'),
);



Running example

  1. Clone the repository.
$ git clone https://github.com/AlexBesida/slikker_kit.git
  1. Move to the example directory
$ cd slikker_kit/example
  1. Run flutter pub get, and then run the app!
$ flutter run



License

MIT License

Copyright (c) 2020-2021 Alexey Besida

Full licence

Libraries

slikker_kit