Skip to content

Commit

Permalink
⭐️ Impl: Add RNIModalPresentationTrigger
Browse files Browse the repository at this point in the history
Related:
* `TODO:2023-03-31-18-33-34` - Unify/streamline/consolidate logic for invoking modal focus/blur.
* `TODO:2023-04-07-05-44-22` - Impl. `RNIModalPresentationTrigger` enum.
  • Loading branch information
dominicstop committed Apr 6, 2023
1 parent fb19d10 commit a585c6b
Showing 1 changed file with 16 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
//
// RNIModalPresentationTrigger.swift
// react-native-ios-modal
//
// Created by Dominic Go on 4/7/23.
//

import Foundation

public enum RNIModalPresentationTrigger: String {
case programmatic;
case gesture;
case request;
case reordering;
case unknown;
};

0 comments on commit a585c6b

Please sign in to comment.