Type alias LandingViewProps

LandingViewProps: {
    companyImage?: ImageSourcePropType;
    companyImageSize?: {
        height: number;
        width: number;
    };
    continueDisabled?: boolean;
    continueOnLongPress?: ((event) => void);
    continueOnPress: ((event) => void);
    continueText: string;
    copyrightText: string;
    longProductName: string;
    privacyPolicyOnLongPress?: ((event) => void);
    privacyPolicyOnPress?: ((event) => void);
    privacyPolicyText?: string;
    productImage: ImageSourcePropType;
    productImageSize?: {
        height: number;
        width: number;
    };
    versionText: string;
}

Props for LandingView component

Type declaration

  • Optional companyImage?: ImageSourcePropType

    Company image to load in top right. Can pass in many ways including require require('../../assets/images/image.png')

  • Optional companyImageSize?: {
        height: number;
        width: number;
    }

    Company image size (defaults to 61px x 24px). Defaults should be followed; but slight (few pixel) alterations may be needed based on image used.

    • height: number
    • width: number
  • Optional continueDisabled?: boolean

    Indicate that continue is disabled

  • Optional continueOnLongPress?: ((event) => void)
      • (event): void
      • onLongPress event when Continue pressed

        Parameters

        • event: GestureResponderEvent

        Returns void

  • continueOnPress: ((event) => void)
      • (event): void
      • onPress event when Continue pressed

        Parameters

        • event: GestureResponderEvent

        Returns void

  • continueText: string

    Text to show for continue button

  • copyrightText: string

    Copyright text (normally: Copyright (c) YYYY Company)

  • longProductName: string

    Product name (full legal name)

  • Optional privacyPolicyOnLongPress?: ((event) => void)
      • (event): void
      • onLongPress event when Privacy policy pressed

        Parameters

        • event: GestureResponderEvent

        Returns void

  • Optional privacyPolicyOnPress?: ((event) => void)
      • (event): void
      • onPress event when Privacy policy pressed

        Parameters

        • event: GestureResponderEvent

        Returns void

  • Optional privacyPolicyText?: string

    Text to show for privacy policy

  • productImage: ImageSourcePropType

    Product image to load under. Can pass in many ways including require require('../../assets/images/image.png')

  • Optional productImageSize?: {
        height: number;
        width: number;
    }

    Product image size (defaults to 96px x 96px). Defaults should be followed; but slight (few pixel) alterations may be needed based on image used.

    • height: number
    • width: number
  • versionText: string

    Version text to show on screen (normally: Version 5.2.3 (30))

Generated using TypeDoc