slikker_kit 1.0.1 slikker_kit: ^1.0.1 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
Installation #
of your flutter project, add the following dependency
- In your
pubspec.yaml
add the following dependency:
dependencies:
...
slikker_ripple:
git:
url: git://github.com/AlexBesida/slikker_kit.git
- Run command to update the dependencies:
$ flutter pub get
// Soon the way will be simplified
Usage #
- Import
slikker_kit
to your library:
import 'package:slikker_kit/slikker_kit.dart';
- Now you can use Slikker components! Example:
Widget button = SlikkerCard(
padding: EdgeInsets.all(15),
accent: 240,
borderRadius: BorderRadius.circular(12),
child: Text('Hello World!'),
onTap: () => print('Yayyy'),
)
// Component list coming soon
License #
MIT License
Copyright (c) 2020 Alexey Besida