Skip to content

Version 1.3.2

Compare
Choose a tag to compare
@SvenTiigi SvenTiigi released this 11 Apr 15:37

Title Mode | PR from @Fudge0952 (#38)

In default the TitleView is sticked to the top.
If you wish that the TitleView scrolls with the ItemsView you can change the titleMode on the TitleView configuration.

// TitleView scrolls alongside with the ItemsView
configuration.titleView.titleMode = .scrolls

// TitleView is fixed to top
configuration.titleView.titleMode = .fixed

☝️ In default the titleMode is set to .fixed.

Hide Status-Bar (#35)

This version adds the option to hide the status bar.

// Hide Status-Bar
configuration.prefersStatusBarHidden =  true

☝️ In default prefersStatusBarHidden is set to false.