UNPKG

react-native-ui-lib

Version:

<p align="center"> <img src="https://user-images.githubusercontent.com/1780255/105469025-56759000-5ca0-11eb-993d-3568c1fd54f4.png" height="250px" style="display:block"/> </p> <p align="center">UI Toolset & Components Library for React Native</p> <p a

33 lines (32 loc) 735 B
/// <reference types="react" /> import { ActivityIndicatorProps, TextStyle, ViewStyle } from 'react-native'; export declare type LoaderScreenProps = ActivityIndicatorProps & { /** * Color of the loading indicator */ loaderColor?: string; /** * Custom loader */ customLoader?: React.ReactChild; /** * Color of the loader background (only when passing 'overlay') */ backgroundColor?: string; /** * loader message */ message?: string; /** * message style */ messageStyle?: TextStyle; /** * Show the screen as an absolute overlay */ overlay?: boolean; /** * Custom container style */ containerStyle?: ViewStyle; };