forked from cerc-io/laconic-wallet
Generate HD wallet and sign message (#3)
* 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>
This commit is contained in:
@@ -0,0 +1,32 @@
|
||||
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;
|
||||
Reference in New Issue
Block a user