0.0.3-alpha.0 • Published 4 years ago

@reactuniversal/button-material v0.0.3-alpha.0

Weekly downloads
1
License
ISC
Repository
github
Last release
4 years ago

@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>
    );
}`;