Skip to content

Instantly share code, notes, and snippets.

@GantMan
Last active November 8, 2018 16:33
Show Gist options
  • Select an option

  • Save GantMan/97c5f780789e98324e6a4612050ba5ce to your computer and use it in GitHub Desktop.

Select an option

Save GantMan/97c5f780789e98324e6a4612050ba5ce to your computer and use it in GitHub Desktop.
Basic Welcome View Manager for React Native
#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