Last active
February 26, 2025 12:02
-
-
Save okwasniewski/18c9092e0b7b8665a274d750d086d8ca to your computer and use it in GitHub Desktop.
SwiftUIStoreViewView.mm
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
- (instancetype)initWithFrame:(CGRect)frame | |
{ | |
if (self = [super initWithFrame:frame]) { | |
static const auto defaultProps = std::make_shared<const SwiftUIStoreViewViewProps>(); | |
_props = defaultProps; | |
_view = [[StoreViewProvider alloc] init]; | |
self.contentView = _view; | |
} | |
return self; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment