forked from cerc-io/laconic-wallet
* Generate ethers wallet * Store wallet private key and mnemonic using react-native-keychain * Add semicolons * Edit ui heading * Make review changes * Use consistent pattern for functions * Add method to sign message * Change title * Improve signing time * Hide button on wallet initilisation --------- Co-authored-by: Adw8 <adwait@deepstacksoft.com>
33 lines
557 B
JavaScript
33 lines
557 B
JavaScript
import { StyleSheet } from 'react-native';
|
|
|
|
const styles = StyleSheet.create({
|
|
headerContainer: {
|
|
padding: 15,
|
|
alignItems: 'center',
|
|
justifyContent: 'center',
|
|
},
|
|
headerText: {
|
|
color: 'black',
|
|
fontSize: 22,
|
|
fontWeight: 'bold',
|
|
},
|
|
sectionContainer: {
|
|
marginTop: 32,
|
|
paddingHorizontal: 24,
|
|
},
|
|
sectionTitle: {
|
|
fontSize: 24,
|
|
fontWeight: '600',
|
|
},
|
|
sectionDescription: {
|
|
marginTop: 8,
|
|
fontSize: 18,
|
|
fontWeight: '400',
|
|
},
|
|
highlight: {
|
|
fontWeight: '700',
|
|
},
|
|
});
|
|
|
|
export default styles;
|