UNPKG

react-native-spotlight-guide

Version:

A modern, customizable and high-performance spotlight/walkthrough library for React Native with TypeScript support

22 lines (21 loc) 540 B
export interface SpotlightGuideProps { steps: SpotlightStep[]; isVisible: boolean; onFinish: () => void; onSkip?: () => void; overlayColor?: string; overlayOpacity?: number; spotlightPadding?: number; } export interface SpotlightStep { target: any; title?: string; description: string; shape?: "rectangle" | "circle" | "square"; spotlightStyles?: any; contentStyles?: any; buttonStyles?: any; nextButtonText?: string; prevButtonText?: string; finishButtonText?: string; }