native-charts
Version:
With native-charts components, you can transform your data into graphs in your react-native applications.
20 lines (18 loc) • 408 B
JavaScript
import {StyleSheet} from 'react-native';
const style = StyleSheet.create({
layout: {
flex: 1,
marginTop: 10,
flexDirection: 'row',
alignItems: 'center',
justifyContent: 'center',
},
text: {
fontSize: 10,
color: '#fff',
textAlign: 'center',
paddingHorizontal: 5,
paddingVertical: 5,
},
});
export default style;