slikker_kit 1.1.0-alpha.22 slikker_kit: ^1.1.0-alpha.22 copied to clipboard
Slikker Kit is a Flutter package which provides Slikker Design System components.
Slikker Kit #
Slikker Kit is a Flutter package which provides Slikker Design System components #
The preview of the future version 1.1.0
.
Alpha development changelog
Table of contents. #
Installing package #
- 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
- Import
slikker_kit
to your dart file:
import 'package:slikker_kit/slikker_kit.dart';
- Now you can use Slikker components! Example:
Widget button = SlikkerButton(
padding: EdgeInsets.all(15),
child: Text('Hello World!'),
onTap: () => print('Yayyy'),
);
Running example #
- Clone the repository.
$ git clone https://github.com/AlexBesida/slikker_kit.git
- Move to the example directory
$ cd slikker_kit/example
- Run
flutter pub get
, and then run the app!
$ flutter run
License #
MIT License
Copyright (c) 2020-2021 Alexey Besida