
Security News
OWASP 2025 Top 10 Adds Software Supply Chain Failures, Ranked Top Community Concern
OWASP’s 2025 Top 10 introduces Software Supply Chain Failures as a new category, reflecting rising concern over dependency and build system risks.
@korsolutions/react-native-joystick
Advanced tools
NPM
npm install react-native-joystick react-native-gesture-handler --save
YARN
yarn add react-native-joystick react-native-gesture-handler
Add GestureHandlerRootView at the root level of your app.
import { GestureHandlerRootView } from "react-native-gesture-handler";
<GestureHandlerRootView>
<YourApp />
</GestureHandlerRootView>

import { KorolJoystick } from "korol-joystick";
<KorolJoystick color="#06b6d4" radius={75} onMove={(data) => console.log(data)} />
Set the size radius of the container circle The inside joystick radius is 1/3 of this size Type: Number
Set the color scheme of the joystick The color of the container and the joystick is set based on this color with a set opacity.
type: HEX Color Code
A callback function with an argument of type MoveJoystickEvent.
type: Function
Event returned by the onMove, onStart and onStop callbacks.
{
type: "move" | "stop" | "start";
position: {
x: number;
y: number;
}
force: number;
angle: {
radian: number;
degree: number;
}
}
FAQs
React Native Joystick
The npm package @korsolutions/react-native-joystick receives a total of 87 weekly downloads. As such, @korsolutions/react-native-joystick popularity was classified as not popular.
We found that @korsolutions/react-native-joystick 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
OWASP’s 2025 Top 10 introduces Software Supply Chain Failures as a new category, reflecting rising concern over dependency and build system risks.

Research
/Security News
Socket researchers discovered nine malicious NuGet packages that use time-delayed payloads to crash applications and corrupt industrial control systems.

Security News
Socket CTO Ahmad Nassri discusses why supply chain attacks now target developer machines and what AI means for the future of enterprise security.