react-native-physics
Version:
A physics library for React Native (in progress)
25 lines (23 loc) • 592 B
JavaScript
import React from 'react';
import { Text } from 'react-native';
import { Container, Box } from '../../index.js';
export default class Gravity extends React.Component {
render() {
return (
<Container
style={{ flex: 1, backgroundColor: '#fff' }}
delay={500}
>
<Box
position={{ x: 20, y: 150 }}
velocity={{ x: 5, y: -7 }}
bounce={{ x: 1, y: 1 }}
collideWithContainer={true}
id="a"
>
<Text style={{ fontSize: 35 }}>Hello World</Text>
</Box>
</Container>
);
}
}