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

    Interface VideoFeedPlayIconConfiguration

    interface VideoFeedPlayIconConfiguration {
        hidden?: boolean;
        iconWidth?: number;
        imageName?: string;
        systemImageName?: string;
    }
    Index

    Properties

    hidden?: boolean

    Specifies if the play icon is hidden. Defaults to false.

    iconWidth?: number

    The width of play icon. The icon is always square. Sizing is independent of imageName: it applies to the default icon as well. If you don't set this property, the icon width will be 40 on iOS and 36dp on Android.

    imageName?: string

    The name of the image bundled with your app, used to replace the default play icon. On iOS, add the image to the asset catalogs(Images.xcassets, Assets.xcassets etc.). On Android, add the drawable to res/drawable and pass its name without the file extension. Leave it unset to keep the component's default icon. The icon is rendered as-is with no tint applied, so a multi-color image, such as one that carries its own circular backdrop, keeps its colors.

    systemImageName?: string

    The system image name. Only supported on iOS.