Skip to content

Releases: shortcut/shortcut-swiftui-ios

1.1.0

25 Jun 09:30
a5a5b08
Compare
Choose a tag to compare

What's Changed

Full Changelog: 1.0.7...1.1.0

1.0.7

22 Jun 11:40
f5cc80e
Compare
Choose a tag to compare

Enabling tvOS

This release is about fixing some issues that prevented this from compiling for tvOS.

What's Changed

New Contributors

Full Changelog: 1.0.6...1.0.7

Fix build error

31 Mar 13:31
88ef1ed
Compare
Choose a tag to compare

New overlay(isPresented:) Modifier

16 Dec 12:20
90e1cb3
Compare
Choose a tag to compare

Whats new in this release:
New overlay(isPresented:) view modifier

Example:

struct Example: View {
    @State private var isShowingOverlay = false

    var body: some View {
        VStack(spacing: 50) {
            Button("Show overlay") {
                isShowingOverlay.toggle()
            }

            RoundedRectangle(cornerRadius: 12)
                .fill(Color.blue)
                .overlay(isPresented: isShowingOverlay) {
                    Text("Hello, world!")
                }
        }
    }
}

Fixed version problem

27 Oct 12:51
ffab3eb
Compare
Choose a tag to compare

Fixed problems with version tag 1.0.3.

What was the problem:
There was a version 1.0.3. Later there was a new commit. Then the tag 1.0.3 was removed and assigned to this new commit.

Because of this, there might be problem to build project with version 1.0.3 and cause error like this:

error project: Revision ffab3eb63d0f438bd4ef2db34b4af05a3036ff9b for shortcut-swiftui-ios remoteSourceControl https:/shortcut/shortcut-swiftui-ios.git version 1.0.3 does not match previously recorded value 4121f78958d85f8619ffc452989d7b19fefceaf9

Open class for ModalViewRouter

27 Oct 10:56
ffab3eb
Compare
Choose a tag to compare
  • Made ModalViewRouter class open so it can be inherited

watchOS support

20 Oct 14:58
4121f78
Compare
Choose a tag to compare
  • Added the watchOS support

Fixed Alert Presenter

04 May 08:30
1d9921b
Compare
Choose a tag to compare

v1.0.0

26 Apr 13:28
84efe24
Compare
Choose a tag to compare

• Changed package name to ShortcutUI

v0.3.0

07 Apr 10:23
fe59937
Compare
Choose a tag to compare
  • Added a possibility to change the modal view options
  • Updated versions requirements
  • Updated the package name to ShortcutSwiftUI
  • Alert presenter
  • Added new hasNotch property