liquid-fire-ios
v0.1.0
Published
iOS Style LiquidFire Transitions.
Downloads
5
Readme
Liquid Fire iOS
Liquid-fire-ios provides additional transitions that are similar to the transitions found in native iOS applications.
Support, Questions, Collaboration
Join the liquid-fire channel on Slack.
Status
Usage
ember install liquid-fire-ios
This will run the default blueprint which additionally installs liquid-fire
.
Defining a Transition
export default function() {
this.transition(
this.use('exit-right', { duration: 200 }),
this.reverse('exit-left', { duration: 200 })
);
}
Contributing
Contributions are very welcome.
When making a PR try to use the following conventions:
Commit Messages:
type(shortname): action based description
Examples:
- chore(deps): bump deps in package.json and bower.json
- docs(component): document the
fast-action
component
Branch Naming:
type/short-description
Examples:
- chore/bump-deps
- docs/fast-action-component