components#StyledText TypeScript Examples
The following examples show how to use
components#StyledText.
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: ChooseDialingCode.tsx From react-native-crypto-wallet-app with MIT License | 6 votes |
ChooseDialingCode = () => {
/*
const [selectedCountry, setSelectedCountry] = useState<ICountry>({
name: 'unitedStates',
dialingCode: '+1',
});
const { name } = selectedCountry;
return (
<Background>
<Box flex={1} justifyContent="center" paddingHorizontal="l" backgroundColor="bgSecondary">
<DialingCodeDropdown selectedCountry={name} onPress={() => true} />
</Box>
</Background>
);
*/
return (
<Background>
<StyledText variant="h1">ChooseDialingCode</StyledText>
</Background>
);
}
Example #2
Source File: Welcome.tsx From react-native-crypto-wallet-app with MIT License | 6 votes |
Welcome = ({ navigation }: StackNavigationProps<PreAuthScreens, 'Welcome'>) => {
const handleNavigation = (route: 'Login' | 'SignUp') => {
navigation.navigate(route);
};
return (
<Background isBlue>
<Box flex={1} alignItems="center">
<Box style={WelcomeStyle.logo}>
<Illustration name="logo" />
</Box>
<Box alignItems="center">
<StyledText variant="h3Regular" color="white" opacity={0.5}>
Welcome to
</StyledText>
<StyledText variant="h1Light" color="white">
WHOLLET
</StyledText>
</Box>
<Box flex={1} justifyContent="flex-end">
<BottomSection
mainButtonVariant="secondary"
mainButtonLabel="Create account"
lightTextLabel="Already have an account?"
accentTextLabel="Login"
onMainButtonPress={() => handleNavigation('SignUp')}
onAccentTextPress={() => handleNavigation('Login')}
isWelcomePage
/>
</Box>
</Box>
</Background>
);
}
Example #3
Source File: Amount.tsx From react-native-crypto-wallet-app with MIT License | 5 votes |
Amount = () => {
return (
<Background>
<StyledText variant="h1">Amount</StyledText>
</Background>
);
}
Example #4
Source File: TFA.tsx From react-native-crypto-wallet-app with MIT License | 5 votes |
TFA = () => {
return (
<Background>
<StyledText variant="h1">TFA</StyledText>
</Background>
);
}
Example #5
Source File: ChangePassword.tsx From react-native-crypto-wallet-app with MIT License | 5 votes |
ChangePassword = () => {
return (
<Background>
<StyledText variant="h1">ChangePassword</StyledText>
</Background>
);
}
Example #6
Source File: ChangePin.tsx From react-native-crypto-wallet-app with MIT License | 5 votes |
ChangePin = () => {
return (
<Background>
<StyledText variant="h1">ChangePin</StyledText>
</Background>
);
}
Example #7
Source File: NewPin.tsx From react-native-crypto-wallet-app with MIT License | 5 votes |
NewPin = () => {
return (
<Background>
<StyledText variant="h1">NewPin</StyledText>
</Background>
);
}
Example #8
Source File: Security.tsx From react-native-crypto-wallet-app with MIT License | 5 votes |
Security = () => {
return (
<Background>
<StyledText variant="h1">Security</StyledText>
</Background>
);
}
Example #9
Source File: AddMessage.tsx From react-native-crypto-wallet-app with MIT License | 5 votes |
AddMessage = () => {
return (
<Background>
<StyledText variant="h1">AddMessage</StyledText>
</Background>
);
}
Example #10
Source File: VerifyCode.tsx From react-native-crypto-wallet-app with MIT License | 5 votes |
VerifyCode = () => {
return (
<Background>
<StyledText variant="h1">VerifyCode</StyledText>
</Background>
);
}
Example #11
Source File: ChooseRecipient.tsx From react-native-crypto-wallet-app with MIT License | 5 votes |
ChooseRecipient = () => {
return (
<Background>
<StyledText variant="h1">ChooseRecipient</StyledText>
</Background>
);
}
Example #12
Source File: AllAssets.tsx From react-native-crypto-wallet-app with MIT License | 5 votes |
AllAssets = () => {
return (
<Background>
<StyledText variant="h1">AllAssets</StyledText>
</Background>
);
}
Example #13
Source File: AllTransactions.tsx From react-native-crypto-wallet-app with MIT License | 5 votes |
AllTransaction = () => {
return (
<Background>
<StyledText variant="h1">AllTransaction</StyledText>
</Background>
);
}
Example #14
Source File: CoinDetails.tsx From react-native-crypto-wallet-app with MIT License | 5 votes |
CoinDetails = () => {
return (
<Background>
<StyledText variant="h1">CoinDetails</StyledText>
</Background>
);
}
Example #15
Source File: TransactionDetails.tsx From react-native-crypto-wallet-app with MIT License | 5 votes |
TransactionDetails = () => {
return (
<Background>
<StyledText variant="h1">TransactionDetails</StyledText>
</Background>
);
}
Example #16
Source File: EnterAddress.tsx From react-native-crypto-wallet-app with MIT License | 5 votes |
EnterAddress = () => {
return (
<Background>
<StyledText variant="h1">EnterAddress</StyledText>
</Background>
);
}
Example #17
Source File: ScanQRCode.tsx From react-native-crypto-wallet-app with MIT License | 5 votes |
ScanQRCode = () => {
return (
<Background>
<StyledText variant="h1">ScanQRCode</StyledText>
</Background>
);
}
Example #18
Source File: Confirmation.tsx From react-native-crypto-wallet-app with MIT License | 5 votes |
Confirmation = () => {
return (
<Background>
<StyledText variant="h1">Confirmation</StyledText>
</Background>
);
}
Example #19
Source File: Portfolio.tsx From react-native-crypto-wallet-app with MIT License | 5 votes |
Portfolio = () => {
return (
<Background>
<StyledText variant="h1">Portfolio</StyledText>
</Background>
);
}
Example #20
Source File: EnterPhoneNumber.tsx From react-native-crypto-wallet-app with MIT License | 5 votes |
EnterPhoneNumber = () => {
return (
<Background>
<StyledText variant="h1">EnterPhoneNumber</StyledText>
</Background>
);
}
Example #21
Source File: Overview.tsx From react-native-crypto-wallet-app with MIT License | 5 votes |
Overview = () => {
return (
<Background>
<StyledText variant="h1">Overview</StyledText>
</Background>
);
}
Example #22
Source File: ChooseCurrency.tsx From react-native-crypto-wallet-app with MIT License | 5 votes |
ChooseCurrency = () => {
return (
<Background>
<StyledText variant="h1">ChooseCurrency</StyledText>
</Background>
);
}
Example #23
Source File: NewPassword.tsx From react-native-crypto-wallet-app with MIT License | 5 votes |
NewPassword = () => {
return (
<Background>
<StyledText variant="h1">NewPassword</StyledText>
</Background>
);
}
Example #24
Source File: ForgotPassword.tsx From react-native-crypto-wallet-app with MIT License | 5 votes |
ForgotPassword = () => {
return (
<Background>
<StyledText variant="h1">ForgotPassword</StyledText>
</Background>
);
}
Example #25
Source File: CheckYourEmail.tsx From react-native-crypto-wallet-app with MIT License | 5 votes |
CheckYourEmail = () => {
return (
<Background>
<StyledText variant="h1">CheckYourEmail</StyledText>
</Background>
);
}
Example #26
Source File: ScanFrontSide.tsx From react-native-crypto-wallet-app with MIT License | 5 votes |
ScanFrontSide = () => {
return (
<Background>
<StyledText variant="h1">ScanFrontSide</StyledText>
</Background>
);
}
Example #27
Source File: ScanBackSide.tsx From react-native-crypto-wallet-app with MIT License | 5 votes |
ScanBackSide = () => {
return (
<Background>
<StyledText variant="h1">ScanBackSide</StyledText>
</Background>
);
}
Example #28
Source File: PersonalInformation.tsx From react-native-crypto-wallet-app with MIT License | 5 votes |
PersonalInformation = () => {
return (
<Background>
<StyledText variant="h1">PersonalInformation</StyledText>
</Background>
);
}
Example #29
Source File: NationalIDScan.tsx From react-native-crypto-wallet-app with MIT License | 5 votes |
NationalIDScan = () => {
return (
<Background>
<StyledText variant="h1">NationalIDScan</StyledText>
</Background>
);
}