0 purchases
slikker kit
Slikker Kit #
Slikker Kit is a Flutter package which provides Slikker Design System components #
Installation #
In your pubspec.yaml add the following dependency:
dependencies:
...
slikker_kit: ^1.0.5
copied to clipboard
Run command to update the dependencies:
$ flutter pub get
copied to clipboard
Usage #
Import slikker_kit to your library:
import 'package:slikker_kit/slikker_kit.dart';
copied to clipboard
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'),
)
copied to clipboard
// Component list coming soon
License #
MIT License
Copyright (c) 2020 Alexey Besida
Full licence
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.