Skip to content

Commit

Permalink
⭐️ Impl: RNIOnModalFocusEventData
Browse files Browse the repository at this point in the history
Related:
* TODO:2023-03-04-06-34-28 - Library Native Cleanup.
  • Loading branch information
dominicstop committed Mar 26, 2023
1 parent 91dc425 commit 242d514
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions ios/src_library/React Native/RNIModal/RNIModalEvents.swift
Original file line number Diff line number Diff line change
Expand Up @@ -24,3 +24,21 @@ public struct RNIModalBaseEventData: RNIDictionarySynthesizable {

let modalData: RNIModalData;
};

public struct RNIOnModalFocusEventData: RNIDictionarySynthesizable {

public static var synthesizedDictionaryIgnore: [String] {
["modalData"]
};

public static var synthesizedDictionaryInlinedProperties: [
PartialKeyPath<Self>
] {
[\.modalData];
};

let modalData: RNIModalBaseEventData;
let senderInfo: RNIModalData;

let isInitial: Bool;
};

0 comments on commit 242d514

Please sign in to comment.