WhatsNewKit v1.3.1 Release Notes

Release Date: 2019-11-02 // over 4 years ago
  • 👍 Dark-Mode Theme Support

    ➕ Added support for Dark-Mode when using a predefined Theme (#29, #30)

    📚 Use the .red Theme if you wish that a predefined Theme like .darkRed and .whiteRed automatically adapts to the current UserInterfaceStyle.

    // Configuration with predefine `red` Theme which auto adapts to the UserInterfaceStyle// in order to support iOS 13 Dark-Modelet configuration = WhatsNewViewController.Configuration( theme: .red)
    

    Right Layout

    ➕ Added right layout (#28)

    🔧 WhatsNewKit comes with three predefined ItemsView.Layouts.

    Left Centered Right
    🍱 Default Layout Centered Layout
    // Left Layoutconfiguration.itemsView.layout = .left// Centered Layoutconfiguration.itemsView.layout = .centered// Right Layoutconfiguration.itemsView.layout = .right
    

    🍱 > ☝️ In default the ItemsView layout is set to .left.