Skip to content
This repository has been archived by the owner on Nov 10, 2020. It is now read-only.

iOS Settings

Matei Radu edited this page Mar 3, 2019 · 2 revisions

Behavior

  • All properties are optional.
  • If a property is set incorrectly the configuration process will not fail and its default value will be used instead.
  • If a property is not available at runtime because the device is running an older iOS version, the configuration process will not fail and the property will be skipped entirely.

SettingsIOS object

{
  preferredBarTintColor: "#AA0000",
  preferredControlTintColor: "white",
  barCollapsingEnabled: true
}

Reference

preferredBarTintColor [string]

Default: undefined

Available on: iOS >= 10.0.

The color to tint the background of the navigation bar and the toolbar. Provided color can be in any TinyColor supported format.

preferredControlTintColor [string]

Default: undefined

Available on: iOS >= 10.0.

The color to tint the control buttons on the navigation bar and the toolbar. Provided color can be in any TinyColor supported format.

barCollapsingEnabled [boolean]

Default: false

Available on: iOS >= 11.0.

This property is still undocumented in the Apple Developer Documentation, but it's made available anyway 🤷