Last active
November 8, 2018 16:33
-
-
Save GantMan/97c5f780789e98324e6a4612050ba5ce to your computer and use it in GitHub Desktop.
Basic Welcome View Manager for React Native
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
| #import "RNTWelcomeViewManager.h" | |
| @implementation RNTWelcomeViewManager | |
| RCT_EXPORT_MODULE() | |
| - (UIView *)view | |
| { | |
| UILabel *myTextView = [UILabel new]; | |
| myTextView.text = @"WELCOME!"; | |
| return myTextView; | |
| } | |
| @end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment