Skip to content

Commit

Permalink
Demo Messages
Browse files Browse the repository at this point in the history
  • Loading branch information
surbhi authored and surbhi committed Jul 29, 2019
1 parent ad361e7 commit 150a8c5
Show file tree
Hide file tree
Showing 11 changed files with 23 additions and 20 deletions.
10 changes: 5 additions & 5 deletions ios/HexaWallet.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -1609,7 +1609,7 @@
};
13B07F861A680F5B00A75B9A = {
DevelopmentTeam = Y5TCB759QL;
ProvisioningStyle = Manual;
ProvisioningStyle = Automatic;
SystemCapabilities = {
com.apple.BackgroundModes = {
enabled = 0;
Expand Down Expand Up @@ -2739,7 +2739,7 @@
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
CODE_SIGN_ENTITLEMENTS = HexaWallet/HexaWallet.entitlements;
CODE_SIGN_IDENTITY = "iPhone Developer";
CODE_SIGN_STYLE = Manual;
CODE_SIGN_STYLE = Automatic;
CURRENT_PROJECT_VERSION = 1;
DEAD_CODE_STRIPPING = NO;
DEVELOPMENT_TEAM = Y5TCB759QL;
Expand Down Expand Up @@ -2794,7 +2794,7 @@
);
PRODUCT_BUNDLE_IDENTIFIER = com.bithyve.hexa;
PRODUCT_NAME = HexaWallet;
PROVISIONING_PROFILE_SPECIFIER = "Hexa Wallet Development Profile";
PROVISIONING_PROFILE_SPECIFIER = "";
VERSIONING_SYSTEM = "apple-generic";
};
name = Debug;
Expand All @@ -2805,7 +2805,7 @@
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
CODE_SIGN_ENTITLEMENTS = HexaWallet/HexaWallet.entitlements;
CODE_SIGN_IDENTITY = "iPhone Developer";
CODE_SIGN_STYLE = Manual;
CODE_SIGN_STYLE = Automatic;
CURRENT_PROJECT_VERSION = 1;
DEVELOPMENT_TEAM = Y5TCB759QL;
FRAMEWORK_SEARCH_PATHS = (
Expand Down Expand Up @@ -2859,7 +2859,7 @@
);
PRODUCT_BUNDLE_IDENTIFIER = com.bithyve.hexa;
PRODUCT_NAME = HexaWallet;
PROVISIONING_PROFILE_SPECIFIER = "Hexa Wallet Development Profile";
PROVISIONING_PROFILE_SPECIFIER = "";
VERSIONING_SYSTEM = "apple-generic";
};
name = Release;
Expand Down
2 changes: 1 addition & 1 deletion src/app/custcompontes/Model/ModelCommom/ModelPasscode.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ export default class ModelPasscode extends Component<Props, any> {
<Text
style={ [ globalStyle.ffFiraSansBold, { color: "#000000", marginTop: 20 } ] }
>
Hello, Crypto wizard
Welcome to Hexa!
</Text>
</View>
<View style={ styles.viewPasscode }>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@ export default class ModelFindYourTrustedContacts extends Component {
</Button>
</View>
<View style={ { flex: 1, alignItems: "center", justifyContent: "flex-start" } }>
<Text note style={ [ globalStyle.ffFiraSansMedium, { textAlign: "center" } ] }>Split and Share information about your wallet backup with contacts you choose to trust</Text>
<Text note style={ [ globalStyle.ffFiraSansMedium, { textAlign: "center", marginLeft: 40, marginRight: 40, marginTop: 20 } ] }>to do that you need to allow the app access your phone contacts</Text>
<Text note style={ [ globalStyle.ffFiraSansMedium, { textAlign: "center" } ] }>Hexa requires access to phone contacts to split and share information about your wallet backup with contacts you choose to trust</Text>
<Text note style={ [ globalStyle.ffFiraSansMedium, { textAlign: "center", marginLeft: 40, marginRight: 40, marginTop: 20 } ] }>allow hexa to access your phone contacts</Text>
</View>
<View
style={ {
Expand All @@ -47,7 +47,7 @@ export default class ModelFindYourTrustedContacts extends Component {
</View>

<View style={ { flex: 0.5, alignItems: "center", justifyContent: "flex-end" } }>
<Text note style={ [ globalStyle.ffFiraSansMedium, { textAlign: "center" } ] }>Hexa requires access to your phone contacts to be able to send them messages. Hexa does not store any of your contacts</Text>
<Text note style={ [ globalStyle.ffFiraSansMedium, { textAlign: "center" } ] }>Hexa does not store your contacts</Text>
</View>
<View style={ { flex: 1, justifyContent: "flex-end" } }>
<FullLinearGradientButton
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -373,7 +373,7 @@ export default class TrustedContactScreen extends React.Component<any, any> {
</View>
{ renderIf( this.state.flag_OtpCodeShowStatus == true )(
<View style={ [ Platform.OS == "ios" ? { flex: 0.6 } : { flex: 0.8 }, { marginLeft: 5, marginRight: 5 } ] }>
<Text note style={ { textAlign: "center" } }>Some information about the OTP and how it works comes in this space</Text>
<Text note style={ { textAlign: "center" } }>OTP and share expires in 10 minutes</Text>
<View style={ { flex: 0.8, backgroundColor: "#ffffff", borderRadius: 5, flexDirection: "row", alignItems: "center", justifyContent: "center", margin: 10 } }>
<Text note style={ [ globalStyle.ffFiraSansMedium, { flex: 2, marginLeft: 10 } ] }>OTP</Text>
<Text style={ [ globalStyle.ffOpenSansBold, { flex: 8, letterSpacing: 30, alignSelf: "center", textAlign: "center" } ] }>{ this.state.otpCode }</Text>
Expand Down Expand Up @@ -413,7 +413,7 @@ export default class TrustedContactScreen extends React.Component<any, any> {
) }
{ renderIf( this.state.flag_OtpCodeShowStatus != true )(
<View style={ Platform.OS == "ios" ? { flex: 0.6 } : { flex: 0.8 } }>
<Text note style={ [ globalStyle.ffFiraSansMedium, { textAlign: "center" } ] }>Select how you want to share secret with the selected trusted contact</Text>
<Text note style={ [ globalStyle.ffFiraSansMedium, { textAlign: "center" } ] }>Select method by which you want to share secret</Text>
{/* <Button
onPress={ () => {
this.props.navigation.push( "ShareSecretViaQRScreen", { data: data, onSelect: this.onSelect } );
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -256,7 +256,9 @@ export default class SelfShareSharingScreen extends React.Component<any, any> {
</Button>
</View>
<View style={ { flex: 0.1, margin: 20 } }>
<Text note style={ [ globalStyle.ffFiraSansMedium, { textAlign: "center" } ] }>Share this pdf to an email/cloud which you can access if required to hold this secret for safekeeping </Text>
<Text note style={ [ globalStyle.ffFiraSansMedium, { textAlign: "center" } ] }>Share this pdf to an email/cloud which you can</Text>
<Text note style={ [ globalStyle.ffFiraSansMedium, { textAlign: "center" } ] }>access if required to hold this secret for safekeeping </Text>

</View>
<View style={ { flex: 2 } }>
<FlatList
Expand Down
2 changes: 1 addition & 1 deletion src/screens/PasscodeScreen/PasscodeConfirmScreen.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ export default class PasscodeConfirmScreen extends Component<any, any> {
<Text
style={ [ globalStyle.ffFiraSansBold, { color: "#000000", marginTop: 20 } ] }
>
Hello, Crypto wizard
Welcome to Hexa!
</Text>
</View>
<View style={ styles.viewFirstPasscode }>
Expand Down
4 changes: 2 additions & 2 deletions src/screens/PasscodeScreen/PasscodeScreen.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -215,14 +215,14 @@ export default class PasscodeScreen extends Component {
<Text
style={ [ globalStyle.ffFiraSansBold, { color: "#000000", marginTop: 20 } ] }
>
Hello, Crypto wizard
Welcome to Hexa!
</Text>
</View>
<View style={ styles.viewPasscode }>
<Text
style={ [ globalStyle.ffFiraSansMedium, { marginTop: 10, color: "#8B8B8B" } ] }
>
Re - Enter Passcode{ " " }
Enter Passcode{ " " }
</Text>
<CodeInput
ref="codeInputRef1"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ export default class OnBoardingScreen extends React.Component<any, any> {
/>
<Text style={ [ styles.header, globalStyle.ffFiraSansBold ] }>{ data[ 0 ].title }</Text>
<Text note style={ [ styles.text, globalStyle.ffFiraSansMedium ] }>
{ data[ 0 ].subtitle }
{ data[ 0 ].subtitle }
</Text>
</View>
{/* Second screen */ }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1296,7 +1296,8 @@ export default class FirstSecretQuestionScreen extends React.Component<any, any>
</Item>
</View>
<View style={ styles.viewProcedBtn }>
<Text note style={ [ globalStyle.ffFiraSansMedium, { textAlign: "center", marginLeft: 20, marginRight: 20, marginBottom: 20 } ] } numberOfLines={ 1 }>The answer is never stored anywhere and even your contacts don't know this answer </Text>
<Text note style={ [ globalStyle.ffFiraSansMedium, { textAlign: "center", marginLeft: 20, marginRight: 20, marginBottom: 20 } ] } numberOfLines={ 2 }>The answer is never stored anywhere and even your contacts don't know this answer </Text>

<FullLinearGradientButton title="Go To Wallet" disabled={ this.state.flag_ConfirmDisableBtn } style={ [ this.state.flag_ConfirmDisableBtn == true ? { opacity: 0.4 } : { opacity: 1 }, { borderRadius: 10 } ] } click_Done={ () => this.click_FirstQuestion() } />
</View>
<View style={ { flexDirection: "row", marginLeft: 500, height: 10 } }>
Expand Down
4 changes: 2 additions & 2 deletions src/screens/TabBarScreen/SettingScreen/SettingScreen.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ export default class SettingScreen extends React.Component<any, any> {
this.setState( {
arr_FirstListItem: [ {
title: "Health of the App",
subTitle: "Lorem ipsum dolor sit amet",
subTitle: "Urgent action required to maintain health",
icon: "shield"
},
{
Expand All @@ -76,7 +76,7 @@ export default class SettingScreen extends React.Component<any, any> {
},
{
title: "Contacts that have shared secret with you",
subTitle: "Lorem ipsum dolor sit amet,",
subTitle: "Contacts you have trusted or the ones who have trusted you",
icon: "contact-book"
},
{
Expand Down
2 changes: 1 addition & 1 deletion src/screens/TabBarScreen/WalletScreen/WalletScreen.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -254,7 +254,7 @@ export default class WalletScreen extends React.Component {
shiledIconPer: 3,
arr_CustShiledIcon: [
{
"title": "Your wallet is not secure, some Information about backup comes here. Click on the icon to backup",
"title": "The wallet backup is not secured. Please complete the setup to safeguard against loss of funds",
"image": "sheild_2",
"imageHeight": 80, //this.animatedShieldIconSize,
"imageWidth": 80, //this.animatedShieldIconSize,
Expand Down

0 comments on commit 150a8c5

Please sign in to comment.