-
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.
⭐️ Impl: Animation Logic Scaffolding for `RNIModalSheetBottomAttached…
…OverlayController`
- Loading branch information
1 parent
944874a
commit efc00cf
Showing
4 changed files
with
119 additions
and
13 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
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,17 @@ | ||
// | ||
// EntranceAnimationTransitioning.swift | ||
// react-native-ios-modal | ||
// | ||
// Created by Dominic Go on 10/7/24. | ||
// | ||
|
||
import Foundation | ||
|
||
|
||
public protocol EntranceAnimationTransitioning { | ||
|
||
func createEntranceAnimationBlocks() -> ( | ||
start: () -> Void, | ||
end: () -> Void | ||
); | ||
}; |
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,17 @@ | ||
// | ||
// ExitAnimationTransitioning.swift | ||
// react-native-ios-modal | ||
// | ||
// Created by Dominic Go on 10/7/24. | ||
// | ||
|
||
import Foundation | ||
|
||
|
||
public protocol ExitAnimationTransitioning { | ||
|
||
func createExitAnimationBlocks() -> ( | ||
start: () -> Void, | ||
end: () -> Void | ||
); | ||
}; |