BlueWallet/screen/wallets/addMultisigHelp.tsx

123 lines
3.9 KiB
TypeScript
Raw Normal View History

2023-12-17 11:05:00 -04:00
import React from 'react';
2023-10-19 22:28:49 -04:00
import { Image, View, Text, ScrollView, StyleSheet } from 'react-native';
import { NativeStackNavigationOptions } from '@react-navigation/native-stack';
2020-12-09 13:13:20 +01:00
import loc from '../../loc';
2023-10-23 21:28:44 -04:00
import { useTheme } from '../../components/themes';
import SafeArea from '../../components/SafeArea';
2020-12-07 17:48:56 +01:00
2023-12-17 11:05:00 -04:00
const WalletsAddMultisigHelp: React.FC = () => {
2020-12-09 13:13:20 +01:00
const { colors } = useTheme();
const stylesHook = StyleSheet.create({
root: {
backgroundColor: colors.elevated,
},
intro: {
backgroundColor: colors.newBlue,
2020-12-09 15:55:23 +01:00
borderBottomColor: colors.inputBorderColor,
2020-12-09 13:13:20 +01:00
},
2020-12-09 10:08:02 -05:00
introTitle: {
2020-12-09 13:13:20 +01:00
color: colors.inverseForegroundColor,
},
2020-12-09 10:08:02 -05:00
introText: {
2020-12-09 13:13:20 +01:00
color: colors.inverseForegroundColor,
},
2020-12-09 15:55:23 +01:00
tipsTitle: {
color: colors.foregroundColor,
},
tipsText: {
color: colors.alternativeTextColor,
},
2020-12-09 13:13:20 +01:00
});
2020-12-07 17:48:56 +01:00
2023-12-17 11:05:00 -04:00
return (
<SafeArea style={stylesHook.root}>
2020-12-07 17:48:56 +01:00
<ScrollView>
2020-12-09 13:13:20 +01:00
<View style={[styles.intro, stylesHook.intro]}>
2020-12-09 10:08:02 -05:00
<Text style={[styles.introTitle, stylesHook.introTitle]}>{loc.multisig.ms_help_title}</Text>
<Text style={[styles.introText, stylesHook.introText]}>{loc.multisig.ms_help_text}</Text>
<Image style={styles.introImage} source={require('../../img/mshelp/mshelp-intro.png')} />
2020-12-09 13:13:20 +01:00
</View>
2023-12-17 11:05:00 -04:00
<View style={styles.tips}>
2020-12-09 10:08:02 -05:00
<Text style={[styles.tipsTitle, stylesHook.tipsTitle]}>{loc.multisig.ms_help_title1}</Text>
<Text style={[styles.tipsText, stylesHook.tipsText]}>{loc.multisig.ms_help_1}</Text>
2020-12-09 15:55:23 +01:00
</View>
2023-12-17 11:05:00 -04:00
<View style={styles.tips}>
<Image style={styles.imageTip} source={require('../../img/mshelp/tip2.png')} />
2020-12-09 10:08:02 -05:00
<Text style={[styles.tipsTitle, stylesHook.tipsTitle]}>{loc.multisig.ms_help_title2}</Text>
<Text style={[styles.tipsText, stylesHook.tipsText]}>{loc.multisig.ms_help_2}</Text>
2020-12-09 15:55:23 +01:00
</View>
2023-12-17 11:05:00 -04:00
<View style={styles.tips}>
<Image style={styles.imageTip} source={require('../../img/mshelp/tip3.png')} />
2020-12-09 10:08:02 -05:00
<Text style={[styles.tipsTitle, stylesHook.tipsTitle]}>{loc.multisig.ms_help_title3}</Text>
<Text style={[styles.tipsText, stylesHook.tipsText]}>{loc.multisig.ms_help_3}</Text>
2020-12-09 15:55:23 +01:00
</View>
2023-12-17 11:05:00 -04:00
<View style={styles.tips}>
<Image style={styles.imageTip} source={require('../../img/mshelp/tip4.png')} />
2020-12-09 10:08:02 -05:00
<Text style={[styles.tipsTitle, stylesHook.tipsTitle]}>{loc.multisig.ms_help_title4}</Text>
<Text style={[styles.tipsText, stylesHook.tipsText]}>{loc.multisig.ms_help_4}</Text>
2020-12-09 15:55:23 +01:00
</View>
2023-12-17 11:05:00 -04:00
<View style={styles.tips}>
<Image style={styles.imageTip} source={require('../../img/mshelp/tip5.png')} />
2020-12-09 10:08:02 -05:00
<Text style={[styles.tipsTitle, stylesHook.tipsTitle]}>{loc.multisig.ms_help_title5}</Text>
<Text style={[styles.tipsText, stylesHook.tipsText]}>{loc.multisig.ms_help_5}</Text>
2020-12-09 15:55:23 +01:00
</View>
2020-12-07 17:48:56 +01:00
</ScrollView>
</SafeArea>
2020-12-07 17:48:56 +01:00
);
};
2020-12-09 10:08:02 -05:00
const styles = StyleSheet.create({
intro: {
paddingHorizontal: 32,
borderBottomWidth: 1,
},
introTitle: {
fontSize: 32,
fontWeight: '700',
marginTop: 24,
},
introText: {
fontSize: 15,
marginVertical: 24,
},
introImage: {
flexDirection: 'row',
alignSelf: 'center',
justifyContent: 'flex-end',
},
tips: {
paddingHorizontal: 24,
paddingVertical: 24,
},
tipsTitle: {
fontSize: 22,
fontWeight: 'bold',
},
tipsText: {
fontSize: 14,
fontWeight: '500',
marginTop: 16,
},
imageTip: {
marginBottom: 24,
width: '100%',
maxWidth: 390,
},
});
2020-12-09 13:13:20 +01:00
2023-12-17 11:05:00 -04:00
export const WalletAddMultisigHelpNavigationOptions: NativeStackNavigationOptions = {
2020-12-09 13:13:20 +01:00
title: '',
2020-12-09 15:55:23 +01:00
gestureEnabled: false,
2020-12-09 13:13:20 +01:00
headerStyle: {
2020-12-09 15:55:23 +01:00
backgroundColor: '#0070FF',
},
headerTintColor: '#FFFFFF',
headerBackTitleVisible: false,
2023-10-19 22:28:49 -04:00
statusBarStyle: 'light',
2023-12-17 11:05:00 -04:00
headerShadowVisible: false,
};
2020-12-07 17:48:56 +01:00
export default WalletsAddMultisigHelp;