![PyPI Now Supports iOS and Android Wheels for Mobile Python Development](https://cdn.sanity.io/images/cgdhsj6q/production/96416c872705517a6a65ad9646ce3e7caef623a0-1024x1024.webp?w=400&fit=max&auto=format)
Security News
PyPI Now Supports iOS and Android Wheels for Mobile Python Development
PyPI now supports iOS and Android wheels, making it easier for Python developers to distribute mobile packages.
Register swipe events for dom elements on your mobile websites and get callbacks.
npm install swipeable --save
var swipeable = require('swipeable');
swipeable(<DOM_NODE>, callback, options);
On a valid swipe, callback params are of the form:
{
left: true,
right: false,
top: false,
bottom: false
}
/*
* The above callback indicated that the user swiped from left to right.
* For right to left: The right key is set to true.
* For Top to bottom: The top key is set to true.
* For Bottom to Top: The bottom key is set to true.
*/
Options is an object consisting of the following overrides.
{
timeThreshold: 200, // Time duration(ms) during which the swipe should occur
distanceThreshold: 200 // Minimum distance required to register a valid swipe
}
/*
* The time duration should be specified in milliseconds.
* The timeThreshold defaults to 300ms.
*
* Distance is specified equivalent to scroll distance.
* The distance threshold defaults to 100.
*/
var swipeable = require('swipeable'),
node = document.getElementById('container');
function onSwipe(params) {
console.log(params);
/*
* Prints params in the following format:
* { left: true, right: false, bottom: false, top: false }
*/
};
swipeable(node, onSwipe);
Add a ref to the element on which swipe needs to be detected and register event in component did mount.
import React from 'react';
import swipeable from 'swipeable';
const Container extends React.Component {
constructor(props) {
super(props);
this.state = {
// state
};
this.onScroll = this.onScroll.bind(this);
}
componentDidMount() {
swipeable(this.refs.node, this.onScroll);
}
onScroll(params) {
/*
* Params are in the following format:
* { left: true, right: false, bottom: false, top: false }
* The above indicates Left to right scroll.
*/
}
render() {
return (
<div ref="node">
// JSX
</div>
);
}
}
export default Container;
FAQs
Swipe event with callbacks
The npm package swipeable receives a total of 39 weekly downloads. As such, swipeable popularity was classified as not popular.
We found that swipeable demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
PyPI now supports iOS and Android wheels, making it easier for Python developers to distribute mobile packages.
Security News
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.