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 vote down vote up
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 vote down vote up
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 vote down vote up
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 vote down vote up
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 vote down vote up
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 vote down vote up
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 vote down vote up
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 vote down vote up
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 vote down vote up
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 vote down vote up
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 vote down vote up
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 vote down vote up
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 vote down vote up
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 vote down vote up
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 vote down vote up
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 vote down vote up
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 vote down vote up
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 vote down vote up
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 vote down vote up
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 vote down vote up
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 vote down vote up
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 vote down vote up
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 vote down vote up
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 vote down vote up
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 vote down vote up
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 vote down vote up
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 vote down vote up
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 vote down vote up
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 vote down vote up
NationalIDScan = () => {
  return (
    <Background>
      <StyledText variant="h1">NationalIDScan</StyledText>
    </Background>
  );
}