Created
April 23, 2020 05:50
-
-
Save mukyasa/40b3c77904c1828dee5658723bab0ade to your computer and use it in GitHub Desktop.
This file contains hidden or 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
| // FeatureOne | |
| enum FeatureOneEvents { | |
| @Event(pageValue: "featureOne") | |
| static var screen: Event | |
| @Event(targetValue: "tappedFeatureOneButton") | |
| static var buttonClick: Event | |
| } | |
| // FeatureTwo | |
| enum FeatureTwoEvents { | |
| @Event(pageValue: "featureTwo") | |
| static var screen: Event | |
| @Event(targetValue: "tappedFeatureTwoButton") | |
| static var buttonClick: Event | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment