SVG human body parts highlighter for react-native.
$ npm install react-native-body-highlighter --save
or use yarn
$ yarn add react-native-body-highlighter
Note: If you don't use Expo
, ensure to add react-native-svg to your project before using this package.
The snippet below shows how the component can be used
import { StyleSheet, Switch, View } from "react-native";
import { useState } from "react";
import Body from "react-native-body-highlighter";
export default function App() {
const [bodyPartSelected, setBodyPartSelected] = useState({
slug: "biceps",
intensity: 2,
});
const [isBackSideEnabled, setIsBackSideEnabled] = useState(false);
const toggleSwitch = () =>
setIsBackSideEnabled((previousState) => !previousState);
return (
<View style={styles.container}>
<Body
data={[
{ slug: "chest", intensity: 1 },
{ slug: "abs", intensity: 2 },
{ slug: "upper-back", intensity: 1 },
{ slug: "lower-back", intensity: 2 },
bodyPartSelected,
]}
onBodyPartPress={(e) =>
setBodyPartSelected({ slug: e.slug, intensity: 2 })
}
side={isBackSideEnabled ? "back" : "front"}
scale={1.7}
/>
<Switch onValueChange={toggleSwitch} value={isBackSideEnabled} />
<StatusBar style="auto" />
</View>
);
}
const styles = StyleSheet.create({
container: {
flex: 1,
backgroundColor: "#fff",
alignItems: "center",
justifyContent: "center",
},
});
Prop | Required | Purpose |
---|---|---|
data | Yes | BodyPartObject[] - Array of BodyPartObject to highlight |
onBodyPartPress | No | Func - (bodyPart: BodyPartObject) => {} Callback called when a user tap a body part |
colors | No | String[] - Defaults to ['#0984e3', '#74b9ff'] |
side | No | String - Can be "back" or "front" Display only the front, Defaults to front |
scale | No | Float - Defaults to 1 |
Prop | Required | Purpose |
---|---|---|
data | Yes | (Array) Array of BodyPartObject to highlight |
onMusclePress | No | (Func) (bodyPart: BodyPartObject) => {} Callback called when a user tap a body part, disabled if zoomOnPress is set to true |
colors | No | (Array) Defaults to ['#0984e3', '#74b9ff'] |
frontOnly | No | (Boolean) Display only the front, Defaults to false |
backOnly | No | (Boolean) Display only the back, Defaults to false |
zoomOnPress | No | (Boolean) Defaults to false |
scale | No | (Float) Defaults to 1 |
BodyParts | v2 | v3 | Side |
---|---|---|---|
trapezius | β | β | Both |
triceps | β | β | Both |
forearm | β | β | Both |
obliques | β | β | Both |
adductors | β | β | Both |
calves | β | β | Both |
head | β | β | Both |
neck | β | β | Both |
chest | β | β | Front |
biceps | β | β | Front |
abs Β | β | β | Front |
upper-back | β | β | Back |
lower-back | β | β | Back |
hamstring | β | β | Back |
gluteal | β | β | Back |
deltoids Β | β | β | Both |
hands | β | β | Both |
feet | β | β | Both |
ankles | β | β | Both |
tibialis | β | β | Both |
adductor | β | β | Both |
front-deltoidsΒ | β | β | Front |
abductors | β | β | Front |
back-deltoids Β | β | β | Back |