Browse Source

DOC

localNotifications
Overtorment 6 years ago
parent
commit
ade0b5bbb3
  1. 2
      app.json
  2. 39
      screen/about.js

2
app.json

@ -7,7 +7,7 @@
"ios"
],
"ios": {
"buildNumber": "38",
"buildNumber": "39",
"supportsTablet": false,
"isRemoteJSEnabled": false,
"bundleIdentifier": "io.bluewallet.bluewallet",

39
screen/about.js

@ -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…
Cancel
Save