react-native-firework-sdk
    Preparing search index...

    Interface VideoFeedTitleConfiguration

    interface VideoFeedTitleConfiguration {
        androidFontInfo?: AndroidFontInfo;
        backgroundColor?: string;
        fontSize?: number;
        gradientDrawable?: GradientDrawable;
        hidden?: boolean;
        iOSFontInfo?: IOSFontInfo;
        numberOfLines?: number;
        textColor?: string;
    }
    Index

    Properties

    androidFontInfo?: AndroidFontInfo

    The Android font info of "VideoFeedTitle". The property is ignored when fontSize is not set. Only supported on Android.

    backgroundColor?: string

    The background color of video feed title. The property is ignored when gradientDrawable is set. Only supported on Android.

    fontSize?: number

    The font size of video feed title. If you don't set this property, the font size will be 12 on iOS and 14sp on Android.

    gradientDrawable?: GradientDrawable

    The background drawable of video feed title. Only supported on Android.

    hidden?: boolean

    Specifies if the video feed title is hidden. Defaults to false.

    iOSFontInfo?: IOSFontInfo

    The iOS font info of video feed title. The property is ignored when fontSize is not set. Only supported on iOS.

    numberOfLines?: number

    Specifies the number of allowed lines for the label. Defaults to 2.

    textColor?: string

    The text color of video feed title. If you don't set this property, the text color will be white with alpha is 0.98 on iOS and #ffffff on Android.