@lodev09/react-native-true-sheet 3.1.0-beta.0 → 3.1.0-beta.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -26,6 +26,10 @@ using namespace facebook::react;
|
|
|
26
26
|
@interface TrueSheetContainerView () <TrueSheetContentViewDelegate, TrueSheetHeaderViewDelegate>
|
|
27
27
|
@end
|
|
28
28
|
|
|
29
|
+
Class<RCTComponentViewProtocol> TrueSheetContainerViewCls(void) {
|
|
30
|
+
return TrueSheetContainerView.class;
|
|
31
|
+
}
|
|
32
|
+
|
|
29
33
|
@implementation TrueSheetContainerView {
|
|
30
34
|
TrueSheetContentView *_contentView;
|
|
31
35
|
TrueSheetHeaderView *_headerView;
|
|
@@ -19,6 +19,10 @@
|
|
|
19
19
|
|
|
20
20
|
using namespace facebook::react;
|
|
21
21
|
|
|
22
|
+
Class<RCTComponentViewProtocol> TrueSheetContentViewCls(void) {
|
|
23
|
+
return TrueSheetContentView.class;
|
|
24
|
+
}
|
|
25
|
+
|
|
22
26
|
@implementation TrueSheetContentView {
|
|
23
27
|
RCTScrollViewComponentView *_pinnedScrollView;
|
|
24
28
|
UIView *_pinnedTopView;
|
package/package.json
CHANGED