This repository has been archived on 2022-03-12. You can view files and clone it, but cannot push or open issues or pull requests.
2021-04-02 02:24:13 +03:00

31 lines
950 B
TypeScript

/**
* Makes the native splash screen stay visible until `SplashScreen.hideAsync()` is called.
* It has to be called before any view is rendered.
*
* @example
* ```typescript
* // top level component
*
* SplashScreen.preventAutoHideAsync()
* .then(result => console.log(`SplashScreen.preventAutoHideAsync() succeeded: ${result}`))
* .catch(console.warn); // it's good to explicitly catch and inspect any error
*
* class App extends React.Component {
* ...
* // Hide SplashScreen once your app content is ready to be displayed.
* await SplashScreen.hideAsync()
* ...
* }
* ```
*/
export declare function preventAutoHideAsync(): Promise<boolean>;
export declare function hideAsync(): Promise<boolean>;
/**
* @deprecated Use `SplashScreen.hideAsync()` instead
*/
export declare function hide(): void;
/**
* @deprecated Use `SplashScreen.preventAutoHideAsync()` instead
*/
export declare function preventAutoHide(): void;