GuidesAPI ReferenceRelease Notes
HomeLog InHome
Guides

BlazeFirstTimeSlideCTAStyle - React Native

The BlazeFirstTimeSlideCTAStyle interface represents the style configuration for the Call to Action (CTA) button in the first-time slide.

title

title: string = 'text'

The title text of the CTA button.

default value: "Tap to start"

backgroundColor

backgroundColor: BlazeColor = { ... }

The background color of the CTA button.

default value: hex: #0239FB

textColor

textColor: BlazeColor = { ... }

default value: white

textFont

textFont: BlazeFont = { ... }

The font of the text in the CTA button.

default value: UIFont.systemFont(ofSize: 16, weight: .bold)

cornerRadius

cornerRadius: number = 8

The corner radius of the CTA button.

default value: 8

Initialization

Initializes the BlazeFirstTimeSlideCTAStyle.

interface BlazeFirstTimeSlideCTAStyle {
  title?: string;
  backgroundColor?: BlazeColor;
  textColor?: BlazeColor;
  textFont?: BlazeFont;
  cornerRadius?: number;
}

Did this page help you?