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

[config-types] Remove loading object #2722

Merged
merged 1 commit into from
Sep 28, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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