[−][src]Struct creator_tools::types::LaunchScreen
Launch Screen.
Fields
color_name: Option<String>The name of a color to use as the background color on the launch screen.
Provide a value for this key that’s the name of a color in your asset catalog. You use the same string for the value that you might use when calling the init(named:) initializer of UIColor.
If you don’t set a color, the system uses a default of systemBackground, which varies according to whether the user has selected the light appearance or Dark Mode for the device.
image_name: Option<String>The name of an image to display during app launch.
Provide a value for this key that’s the name of an image in your asset catalog. You use the same string for the value that you might use when calling the init(named:) initializer of UIImage. Because the image comes from your asset catalog, you can use slicing to provide a small image that works on many different platforms.
If you don’t specify an image, the display shows the background color, as given by the UIColorName key. The background color may also show through any transparency in your image.
image_respects_safe_area_insets: Option<bool>A Boolean that specifies whether the launch image should respect the safe area insets.
Navigation bar visibility and configuration during launch.
When you provide a dictionary for this key, the system displays a navigation bar during launch. You can optionally set the dictionary’s UIImageName key to define a custom image for the navigation bar.
Omit this key if you don’t want to display a navigation bar during launch.
tab_bar: Option<Bar>Tab bar visibility and configuration during launch.
When you provide a dictionary for this key, the system displays a tab bar during launch. You can optionally set the dictionary’s UIImageName key to define a custom image for the tab bar.
Omit this key if you don’t want to display a tab bar during launch.
toolbar: Option<Bar>When you provide a dictionary for this key, the system displays a toolbar during launch. You can optionally set the dictionary’s UIImageName key to define a custom image for the toolbar.
Omit this key if you don’t want to display a toolbar during launch.
Trait Implementations
impl Clone for LaunchScreen[src]
pub fn clone(&self) -> LaunchScreen[src]
pub fn clone_from(&mut self, source: &Self)1.0.0[src]
impl Debug for LaunchScreen[src]
impl Default for LaunchScreen[src]
pub fn default() -> LaunchScreen[src]
impl<'de> Deserialize<'de> for LaunchScreen[src]
pub fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>, [src]
__D: Deserializer<'de>,
impl PartialEq<LaunchScreen> for LaunchScreen[src]
pub fn eq(&self, other: &LaunchScreen) -> bool[src]
pub fn ne(&self, other: &LaunchScreen) -> bool[src]
impl Serialize for LaunchScreen[src]
pub fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error> where
__S: Serializer, [src]
__S: Serializer,
impl StructuralPartialEq for LaunchScreen[src]
Auto Trait Implementations
impl RefUnwindSafe for LaunchScreen[src]
impl Send for LaunchScreen[src]
impl Sync for LaunchScreen[src]
impl Unpin for LaunchScreen[src]
impl UnwindSafe for LaunchScreen[src]
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T[src]
impl<T> DeserializeOwned for T where
T: for<'de> Deserialize<'de>, [src]
T: for<'de> Deserialize<'de>,
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T[src]
pub fn clone_into(&self, target: &mut T)[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
pub fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>[src]
impl<V, T> VZip<V> for T where
V: MultiLane<T>,
V: MultiLane<T>,