Skip to content

Instantly share code, notes, and snippets.

View EnettyTech's full-sized avatar
🎯
Focusing

Enetty EnettyTech

🎯
Focusing
View GitHub Profile
import React, { Component, ComponentProps } from 'react';
import { Text, View, StyleSheet, StyleProp } from 'react-native';
import PropTypes from 'prop-types';
interface NeumorphismProps {
children: ComponentProps,
size: Number,
style: StyleProp
}
@EnettyTech
EnettyTech / install-web3-react-native.md
Last active October 7, 2022 10:56
Install web3 with react native

I got web3 1.2.1 up and running react native 0.60.4 and react 16.8.6

yarn add react-native-crypto react-native-randombytes

With react native 0.60.0 or up (auto links)

cd ios/
pod install
cd..