Skip to content

Commit

Permalink
⭐️ Impl: RNIModalIdentity.synthesizedModalIndex
Browse files Browse the repository at this point in the history
  • Loading branch information
dominicstop committed Mar 30, 2023
1 parent 723d4ef commit 2773225
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 2 additions & 1 deletion ios/src_library/React Native/RNIModal/RNIModal+Helpers.swift
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,8 @@ extension RNIModalIdentity where Self: RNIModal {
isModalInFocus: self.isModalInFocus,
synthesizedIsModalInFocus: self.synthesizedIsModalInFocus,
synthesizedIsModalPresented: self.synthesizedIsModalPresented,
synthesizedModalIndex: self.synthesizedModalIndex
synthesizedModalIndex: self.synthesizedModalIndex,
synthesizedWindowID: self.window?.synthesizedID
);
};

Expand Down
2 changes: 2 additions & 0 deletions ios/src_library/React Native/RNIModal/RNIModalData.swift
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,6 @@ public struct RNIModalData: RNIDictionarySynthesizable {
let synthesizedIsModalInFocus: Bool;
let synthesizedIsModalPresented: Bool;
let synthesizedModalIndex: Int;

let synthesizedWindowID: Int?;
};

0 comments on commit 2773225

Please sign in to comment.