forked from novasamatech/parity-signer
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
TermsAndConditions and PrivacyPolicy screens added (novasamatech#147)
* TermsAndConditions and PrivacyPolicy screens added * Checkboxes added * Terms and Conditions added * update privacy policy * aggrement checkboxes implemented + privacy policy screen * save Terms and conditions confirmation to the DB * fix lists * bump iOS version * version added in ABOUT * fix About crash on Android
- Loading branch information
Showing
12 changed files
with
1,424 additions
and
33 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
28 changes: 14 additions & 14 deletions
28
docs/terms-and-conditions.md → docs/terms-and-conditions.md.js
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
// Copyright 2015-2017 Parity Technologies (UK) Ltd. | ||
// This file is part of Parity. | ||
|
||
// Parity is free software: you can redistribute it and/or modify | ||
// it under the terms of the GNU General Public License as published by | ||
// the Free Software Foundation, either version 3 of the License, or | ||
// (at your option) any later version. | ||
|
||
// Parity is distributed in the hope that it will be useful, | ||
// but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
// GNU General Public License for more details. | ||
|
||
// You should have received a copy of the GNU General Public License | ||
// along with Parity. If not, see <http://www.gnu.org/licenses/>. | ||
|
||
// @flow | ||
|
||
import React from 'react'; | ||
import PropTypes from 'prop-types'; | ||
import { View, Text, Platform, StyleSheet } from 'react-native'; | ||
import { default as MarkdownRender } from 'react-native-markdown-renderer'; | ||
import colors from '../colors'; | ||
|
||
export default class Markdown extends React.PureComponent { | ||
render() { | ||
return ( | ||
<MarkdownRender | ||
style={StyleSheet.create({ | ||
text: { | ||
marginTop: 10, | ||
fontFamily: 'Roboto', | ||
fontSize: 14, | ||
color: colors.card_bg | ||
}, | ||
listUnorderedItemIcon: { | ||
color: colors.card_bg, | ||
fontWeight: "900", | ||
marginRight: 3, | ||
marginTop: 19 | ||
}, | ||
listOrderedItemIcon: { | ||
color: colors.card_bg, | ||
marginTop: 19, | ||
marginRight: 3 | ||
} | ||
})} | ||
{...this.props} | ||
/> | ||
); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.