react-native-game-engine-ex.../game/entities/Finger.tsx

26 lines
634 B
TypeScript
Raw Normal View History

2022-06-25 00:29:43 -05:00
import React, { PureComponent } from "react";
import { StyleSheet, View } from "react-native";
const RADIUS = 20;
export const Finger = ({ position }: { position: any[] }) => {
const x = position[0] - RADIUS / 2;
const y = position[1] - RADIUS / 2;
return (
<View style={[styles.finger, { left: x, top: y }]} />
)
};
const styles = StyleSheet.create({
finger: {
borderColor: "#CCC",
borderWidth: 4,
borderRadius: RADIUS * 2,
width: RADIUS * 2,
height: RADIUS * 2,
backgroundColor: "pink",
position: "absolute"
}
});
export default Finger;