@reactuniversal/button-material
v0.0.3-alpha.0
Published
React Universal Material Button
Downloads
2
Maintainers
Readme
@reactunivseral/button-material
The Material button used for React Universal
import React from 'react';
import { View, Text } from 'react-native';
import MaterialButton from '@reactuniversal/button-material';
export default function Page() {
return (
<View style={{flexDirection: 'row', flexWrap: 'wrap'}}>
<Button
style={{
width: 180,
height: 250,
}}>
<Text>Click Me</Text>
</Button>
</View>
);
}`;