mirror of
https://github.com/BlueWallet/BlueWallet.git
synced 2025-01-19 05:45:15 +01:00
DOC
This commit is contained in:
parent
6f296f5f2d
commit
ade0b5bbb3
2
app.json
2
app.json
@ -7,7 +7,7 @@
|
||||
"ios"
|
||||
],
|
||||
"ios": {
|
||||
"buildNumber": "38",
|
||||
"buildNumber": "39",
|
||||
"supportsTablet": false,
|
||||
"isRemoteJSEnabled": false,
|
||||
"bundleIdentifier": "io.bluewallet.bluewallet",
|
||||
|
@ -66,19 +66,43 @@ export default class About extends Component {
|
||||
<BlueCard>
|
||||
<ScrollView maxHeight={height - 150}>
|
||||
<BlueText h4>
|
||||
Blue Wallet is free and opensource Bitcoin wallet
|
||||
BlueWallet is free and opensource Bitcoin wallet. Licensed MIT.
|
||||
</BlueText>
|
||||
|
||||
<BlueButton
|
||||
icon={{ name: 'octoface', type: 'octicon' }}
|
||||
icon={{ name: 'mark-github', type: 'octicon' }}
|
||||
onPress={() => {
|
||||
Linking.openURL('https://github.com/Overtorment/BlueWallet');
|
||||
}}
|
||||
title="github.com/Overtorment/BlueWallet"
|
||||
/>
|
||||
|
||||
<BlueSpacing20 />
|
||||
<BlueText h4>Licensed MIT</BlueText>
|
||||
<BlueButton
|
||||
icon={{ name: 'twitter', type: 'font-awesome' }}
|
||||
onPress={() => {
|
||||
Linking.openURL('https://twitter.com/bluewalletio');
|
||||
}}
|
||||
title="Follow us on Twitter"
|
||||
/>
|
||||
|
||||
<BlueButton
|
||||
icon={{ name: 'thumbsup', type: 'octicon' }}
|
||||
onPress={() => {
|
||||
Linking.openURL(
|
||||
'https://itunes.apple.com/us/app/bluewallet-bitcoin-wallet/id1376878040?l=ru&ls=1&mt=8',
|
||||
);
|
||||
}}
|
||||
title="Leave us a review on Appstore"
|
||||
/>
|
||||
|
||||
<BlueButton
|
||||
icon={{ name: 'arrow-left', type: 'octicon' }}
|
||||
title="Go Back"
|
||||
onPress={() => {
|
||||
this.props.navigation.goBack();
|
||||
}}
|
||||
/>
|
||||
|
||||
<BlueSpacing20 />
|
||||
|
||||
<BlueText h3>Built with awesome:</BlueText>
|
||||
@ -102,13 +126,6 @@ export default class About extends Component {
|
||||
}}
|
||||
title="Run self test"
|
||||
/>
|
||||
<BlueButton
|
||||
icon={{ name: 'arrow-left', type: 'octicon' }}
|
||||
title="Go Back"
|
||||
onPress={() => {
|
||||
this.props.navigation.goBack();
|
||||
}}
|
||||
/>
|
||||
</ScrollView>
|
||||
</BlueCard>
|
||||
</SafeBlueArea>
|
||||
|
Loading…
Reference in New Issue
Block a user