-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
34e998b
commit 4f8ba70
Showing
4 changed files
with
42 additions
and
23 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
// | ||
// RNIModalFlags.swift | ||
// react-native-ios-modal | ||
// | ||
// Created by Dominic Go on 4/27/23. | ||
// | ||
|
||
import Foundation | ||
|
||
public var RNIModalFlagsShared = RNIModalFlags.sharedInstance; | ||
|
||
public class RNIModalFlags { | ||
static let sharedInstance = RNIModalFlags(); | ||
|
||
var isModalViewPresentationNotificationEnabled = true; | ||
|
||
var shouldSwizzleViewControllers = true; | ||
var shouldSwizzledViewControllerNotifyAll = false; | ||
var shouldWrapAllViewControllers = false; | ||
|
||
}; |
12 changes: 0 additions & 12 deletions
12
ios/src_library/React Native/RNIModal/RNIModalSwizzling.swift
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters