Skip to content

Commit a8eda2b

Browse files
committed
Create keyboardLayout
1 parent b4c8f7c commit a8eda2b

File tree

3 files changed

+13
-0
lines changed

3 files changed

+13
-0
lines changed

.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata

+7
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Example/.DS_Store

6 KB
Binary file not shown.

Sources/PinLayout.swift

+6
Original file line numberDiff line numberDiff line change
@@ -96,6 +96,12 @@ public class PinLayout<View: Layoutable> {
9696
return .zero
9797
}
9898
}
99+
100+
public var keyBoardLayout: PEdgeInsets {
101+
guard #available(iOS 15.0, *) else { return .zero }
102+
guard let view = view as? UIView else { return .zero }
103+
return view.keyboardLayoutGuide
104+
}
99105

100106
public var readableMargins: PEdgeInsets {
101107
guard #available(iOS 9.0, *) else { return .zero }

0 commit comments

Comments
 (0)