Skip to content
This repository has been archived by the owner on Jan 18, 2024. It is now read-only.

Commit

Permalink
Remove loading (#2722)
Browse files Browse the repository at this point in the history
  • Loading branch information
EvanBacon authored Sep 28, 2020
1 parent ff0014c commit 543ea04
Showing 1 changed file with 0 additions and 33 deletions.
33 changes: 0 additions & 33 deletions packages/config-types/src/ExpoConfig.ts
Original file line number Diff line number Diff line change
Expand Up @@ -91,39 +91,6 @@ export interface ExpoConfig {
*/
androidCollapsedTitle?: string;
};
/**
* @deprecated Use `splash` instead. Configuration for the loading screen that users see when opening your app, while fetching & caching bundle and assets.
*/
loading?: {
/**
* Local path or remote URL to an image to display while starting up the app. Image size and aspect ratio are up to you. Must be a .png.
*/
icon?: string;
/**
* If no icon is provided, we will show the Expo logo. You can choose between `white` and `blue`.
*/
exponentIconColor?: 'white' | 'blue';
/**
* Similar to `exponentIconColor` but instead indicate if it should be grayscale (`1`) or not (`0`).
*/
exponentIconGrayscale?: number;
/**
* Local path or remote URL to an image to fill the background of the loading screen. Image size and aspect ratio are up to you. Must be a .png.
*/
backgroundImage?: string;
/**
* Color to fill the loading screen background
*/
backgroundColor?: string;
/**
* By default, Expo shows some text at the bottom of the loading screen. Set this to `true` to disable.
*/
hideExponentText?: boolean;
/**
* @deprecated Previously used for changing the style of the iOS loading indicator.
*/
loadingIndicatorStyleExperimental?: string;
};
/**
* By default, Expo looks for the application registered with the AppRegistry as `main`. If you would like to change this, you can specify the name in this property.
*/
Expand Down

0 comments on commit 543ea04

Please sign in to comment.