Last updated:
0 purchases
jst ui
jst_ui #
Packages with the styles and components of the Justa Design System
Getting started #
Add dependency #
You can use the command to add jst_ui as a dependency with the latest stable version:
$ dart pub add jst_ui
copied to clipboard
Or you can manually add jst_ui into the dependencies section in your pubspec.yaml:
dependencies:
jst_ui: ^replace-with-latest-version
copied to clipboard
Usage #
import 'package:jst_ui/jui_styles.dart';
final spacing = JuiBreakpoints.b48;
final color = Juicolors.white
copied to clipboard
import 'package:jst_ui/jui_widgets.dart';
Scafold(
body: Column(
children: [
JuiButton(
label: "Button",
onPressed: () {}
)
]
)
)
copied to clipboard
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.