@column-org/wallet-sdk 1.1.3 → 1.1.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -56,8 +56,10 @@ export function ColumnWalletModal({ visible, onClose, onConnect, sdk }: Props) {
|
|
|
56
56
|
|
|
57
57
|
<TouchableOpacity style={styles.walletOption} onPress={handleConnect}>
|
|
58
58
|
<View style={styles.walletIconContainer}>
|
|
59
|
-
|
|
60
|
-
|
|
59
|
+
<Image
|
|
60
|
+
source={require('../../assets/Column.png')}
|
|
61
|
+
style={styles.walletIconImage}
|
|
62
|
+
/>
|
|
61
63
|
</View>
|
|
62
64
|
<View style={styles.walletInfo}>
|
|
63
65
|
<Text style={styles.walletName}>Column Wallet</Text>
|
|
@@ -127,11 +129,10 @@ const styles = StyleSheet.create({
|
|
|
127
129
|
alignItems: 'center',
|
|
128
130
|
marginRight: 16,
|
|
129
131
|
},
|
|
130
|
-
|
|
131
|
-
width:
|
|
132
|
-
height:
|
|
133
|
-
|
|
134
|
-
borderRadius: 10,
|
|
132
|
+
walletIconImage: {
|
|
133
|
+
width: 24,
|
|
134
|
+
height: 24,
|
|
135
|
+
resizeMode: 'contain',
|
|
135
136
|
},
|
|
136
137
|
walletInfo: {
|
|
137
138
|
flex: 1,
|