Skip to content

Commit d5742f0

Browse files
committed
Add HostPreferenceKey
1 parent 4e2a757 commit d5742f0

File tree

2 files changed

+24
-0
lines changed

2 files changed

+24
-0
lines changed

Sources/OpenSwiftUI/DataAndStorage/Preferences/Internal/HostPreferenceKey.swift

+4
Original file line numberDiff line numberDiff line change
@@ -7,3 +7,7 @@
77
// Status: Complete
88

99
protocol HostPreferenceKey: PreferenceKey {}
10+
11+
extension HostPreferenceKey {
12+
static var _isReadableByHost: Bool { true }
13+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
//
2+
// HostPreferencesKey.swift
3+
// OpenSwiftUI
4+
//
5+
// Created by Kyle on 2023/1/6.
6+
// Lastest Version: iOS 15.5
7+
// Status: WIP
8+
// ID: 7429200566949B8FB892A77E01A988C8
9+
10+
struct HostPreferencesKey: PreferenceKey {
11+
static var defaultValue: PreferenceList {
12+
PreferenceList()
13+
}
14+
15+
static func reduce(value: inout PreferenceList, nextValue: () -> PreferenceList) {
16+
// TODO:
17+
}
18+
19+
private static var nodeId: UInt32 = .zero
20+
}

0 commit comments

Comments
 (0)