We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1cd339f commit efef074Copy full SHA for efef074
SNUTT-2022/SNUTT/Views/Scenes/FriendsScene.swift
@@ -41,11 +41,16 @@ struct RNFriendsView: UIViewRepresentable {
41
let colorScheme: ColorScheme
42
private let moduleName = "friends"
43
44
+ private enum RNFeature: String, CaseIterable {
45
+ case ASYNC_STORAGE
46
+ }
47
+
48
private var initialProps: [String: Any] {
49
var props: [String: Any] = AppMetadata.asDictionary()
50
props["x-access-token"] = accessToken
51
props["theme"] = colorScheme.description
52
props["allowFontScaling"] = false
53
+ props["feature"] = RNFeature.allCases.map { $0.rawValue }
54
return props
55
}
56
0 commit comments