bootjack

Creator: coderz1093

Last updated:

0 purchases

bootjack Image
bootjack Images

Languages

Categories

Add to Cart

Description:

bootjack

Bootjack #
Bootjack is a porting of Twitter Bootstrap 3.0.x in Dart.

API Reference
Git Repository
Discussion
Issues

Install from Dart Pub Repository #
Include the following in your pubspec.yaml:
dependencies:
bootjack: any
copied to clipboard
Then run the Pub Package Manager in Dart Editor (Tool > Pub Install). If you are using a different editor, run the command
(comes with the Dart SDK):
pub install
copied to clipboard
Usage #
First of all in your HTML file, you need to include the CSS resource:
<head>
...
<link rel="stylesheet" href="packages/bootjack/css/bootstrap.min.css">
</head>
copied to clipboard
Most of the functions in Bootjack components are automatic -- you only need to give the right CSS class on DOM elements and call a global function to register.
For example, a Dropdown button component is prepared by giving the following HTML snippet:
<button class="btn btn-default dropdown-toggle" data-toggle="dropdown">
Button
<span class="caret"></span>
</button>
<ul class="dropdown-menu">
<li><a href="#">Menu Item #1</a></li>
<li><a href="#">Menu Item #2</a></li>
<li><a href="#">Menu Item #3</a></li>
</ul>
copied to clipboard
With the following global registration in Dart:
void main() {
Dropdown.use();
}
copied to clipboard
That's right. All you need to do in Dart is to tell Bootjack you are using Dropdown components. You can also progammatically access and manipulate the Dropdown:
Dropdown dd = Dropdown.wire(element);
dd.toggle();
copied to clipboard
Check more examples and the API reference for more features. Also, you can read the reference of Bootstrap.
Notes to Contributors #
Test and Debug #
You are welcome to submit bugs and feature requests. Or even better if you can fix or implement them!
Fork Bootjack #
If you'd like to contribute back to the core, you can fork this repository and send us a pull request, when it is ready.
Please be aware that one of Rikulo's design goals is to keep the sphere of API as neat and consistency as possible. Strong enhancement always demands greater consensus.
If you are new to Git or GitHub, please read this guide first.
Who Uses #

Quire - a simple, collaborative, multi-level task management tool.
Keikai - a sophisticated spreadsheet for big data

License

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Files In This Product:

Customer Reviews

There are no reviews.