@sbaiahmed1/react-native-blur 4.6.2-beta.0 → 4.6.2
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.
- package/README.md +16 -11
- package/android/src/main/java/com/sbaiahmed1/reactnativeblur/BlurType.kt +24 -22
- package/android/src/main/java/com/sbaiahmed1/reactnativeblur/ReactNativeBlurSwitch.kt +19 -1
- package/android/src/main/java/com/sbaiahmed1/reactnativeblur/ReactNativeBlurSwitchManager.kt +5 -0
- package/android/src/main/java/com/sbaiahmed1/reactnativeblur/ReactNativeBlurView.kt +37 -2
- package/android/src/main/java/com/sbaiahmed1/reactnativeblur/ReactNativeBlurViewManager.kt +5 -0
- package/android/src/main/java/com/sbaiahmed1/reactnativeblur/ReactNativeProgressiveBlurView.kt +34 -2
- package/android/src/main/java/com/sbaiahmed1/reactnativeblur/ReactNativeProgressiveBlurViewManager.kt +5 -0
- package/lib/module/BlurSwitch.js +11 -6
- package/lib/module/BlurSwitch.js.map +1 -1
- package/lib/module/BlurView.js +2 -0
- package/lib/module/BlurView.js.map +1 -1
- package/lib/module/LiquidGlassContainer.js.map +1 -1
- package/lib/module/LiquidGlassView.js.map +1 -1
- package/lib/module/ProgressiveBlurView.js +3 -0
- package/lib/module/ProgressiveBlurView.js.map +1 -1
- package/lib/module/ReactNativeBlurSwitchNativeComponent.ts +2 -37
- package/lib/module/ReactNativeBlurViewNativeComponent.ts +2 -0
- package/lib/module/ReactNativeLiquidGlassContainerNativeComponent.ts +0 -5
- package/lib/module/ReactNativeLiquidGlassViewNativeComponent.ts +0 -35
- package/lib/module/ReactNativeProgressiveBlurViewNativeComponent.ts +2 -0
- package/lib/typescript/src/BlurSwitch.d.ts +10 -0
- package/lib/typescript/src/BlurSwitch.d.ts.map +1 -1
- package/lib/typescript/src/BlurView.d.ts +11 -2
- package/lib/typescript/src/BlurView.d.ts.map +1 -1
- package/lib/typescript/src/LiquidGlassContainer.d.ts +3 -2
- package/lib/typescript/src/LiquidGlassContainer.d.ts.map +1 -1
- package/lib/typescript/src/LiquidGlassView.d.ts +25 -15
- package/lib/typescript/src/LiquidGlassView.d.ts.map +1 -1
- package/lib/typescript/src/ProgressiveBlurView.d.ts +11 -2
- package/lib/typescript/src/ProgressiveBlurView.d.ts.map +1 -1
- package/lib/typescript/src/ReactNativeBlurSwitchNativeComponent.d.ts +2 -32
- package/lib/typescript/src/ReactNativeBlurSwitchNativeComponent.d.ts.map +1 -1
- package/lib/typescript/src/ReactNativeBlurViewNativeComponent.d.ts +2 -1
- package/lib/typescript/src/ReactNativeBlurViewNativeComponent.d.ts.map +1 -1
- package/lib/typescript/src/ReactNativeLiquidGlassContainerNativeComponent.d.ts +0 -5
- package/lib/typescript/src/ReactNativeLiquidGlassContainerNativeComponent.d.ts.map +1 -1
- package/lib/typescript/src/ReactNativeLiquidGlassViewNativeComponent.d.ts +0 -30
- package/lib/typescript/src/ReactNativeLiquidGlassViewNativeComponent.d.ts.map +1 -1
- package/lib/typescript/src/ReactNativeProgressiveBlurViewNativeComponent.d.ts +2 -1
- package/lib/typescript/src/ReactNativeProgressiveBlurViewNativeComponent.d.ts.map +1 -1
- package/package.json +1 -1
- package/src/BlurSwitch.tsx +23 -3
- package/src/BlurView.tsx +14 -2
- package/src/LiquidGlassContainer.tsx +3 -2
- package/src/LiquidGlassView.tsx +25 -15
- package/src/ProgressiveBlurView.tsx +15 -2
- package/src/ReactNativeBlurSwitchNativeComponent.ts +2 -37
- package/src/ReactNativeBlurViewNativeComponent.ts +2 -0
- package/src/ReactNativeLiquidGlassContainerNativeComponent.ts +0 -5
- package/src/ReactNativeLiquidGlassViewNativeComponent.ts +0 -35
- package/src/ReactNativeProgressiveBlurViewNativeComponent.ts +2 -0
- package/android/app/build/generated/source/codegen/java/com/facebook/react/viewmanagers/ReactNativeBlurViewManagerDelegate.java +0 -53
- package/android/app/build/generated/source/codegen/java/com/facebook/react/viewmanagers/ReactNativeBlurViewManagerInterface.java +0 -25
- package/android/app/build/generated/source/codegen/java/com/facebook/react/viewmanagers/ReactNativeGlassEffectContainerManagerDelegate.java +0 -53
- package/android/app/build/generated/source/codegen/java/com/facebook/react/viewmanagers/ReactNativeGlassEffectContainerManagerInterface.java +0 -25
- package/android/app/build/generated/source/codegen/java/com/facebook/react/viewmanagers/ReactNativeGlassViewManagerDelegate.java +0 -38
- package/android/app/build/generated/source/codegen/java/com/facebook/react/viewmanagers/ReactNativeGlassViewManagerInterface.java +0 -20
- package/android/app/build/generated/source/codegen/jni/CMakeLists.txt +0 -36
- package/android/app/build/generated/source/codegen/jni/ReactNativeBlurViewSpec-generated.cpp +0 -22
- package/android/app/build/generated/source/codegen/jni/ReactNativeBlurViewSpec.h +0 -24
- package/android/app/build/generated/source/codegen/jni/react/renderer/components/ReactNativeBlurViewSpec/ComponentDescriptors.cpp +0 -23
- package/android/app/build/generated/source/codegen/jni/react/renderer/components/ReactNativeBlurViewSpec/ComponentDescriptors.h +0 -25
- package/android/app/build/generated/source/codegen/jni/react/renderer/components/ReactNativeBlurViewSpec/EventEmitters.cpp +0 -17
- package/android/app/build/generated/source/codegen/jni/react/renderer/components/ReactNativeBlurViewSpec/EventEmitters.h +0 -30
- package/android/app/build/generated/source/codegen/jni/react/renderer/components/ReactNativeBlurViewSpec/Props.cpp +0 -46
- package/android/app/build/generated/source/codegen/jni/react/renderer/components/ReactNativeBlurViewSpec/Props.h +0 -131
- package/android/app/build/generated/source/codegen/jni/react/renderer/components/ReactNativeBlurViewSpec/ReactNativeBlurViewSpecJSI-generated.cpp +0 -17
- package/android/app/build/generated/source/codegen/jni/react/renderer/components/ReactNativeBlurViewSpec/ReactNativeBlurViewSpecJSI.h +0 -19
- package/android/app/build/generated/source/codegen/jni/react/renderer/components/ReactNativeBlurViewSpec/ShadowNodes.cpp +0 -18
- package/android/app/build/generated/source/codegen/jni/react/renderer/components/ReactNativeBlurViewSpec/ShadowNodes.h +0 -43
- package/android/app/build/generated/source/codegen/jni/react/renderer/components/ReactNativeBlurViewSpec/States.cpp +0 -16
- package/android/app/build/generated/source/codegen/jni/react/renderer/components/ReactNativeBlurViewSpec/States.h +0 -41
|
@@ -1,131 +0,0 @@
|
|
|
1
|
-
|
|
2
|
-
/**
|
|
3
|
-
* This code was generated by [react-native-codegen](https://www.npmjs.com/package/react-native-codegen).
|
|
4
|
-
*
|
|
5
|
-
* Do not edit this file as changes may cause incorrect behavior and will be lost
|
|
6
|
-
* once the code is regenerated.
|
|
7
|
-
*
|
|
8
|
-
* @generated by codegen project: GeneratePropsH.js
|
|
9
|
-
*/
|
|
10
|
-
#pragma once
|
|
11
|
-
|
|
12
|
-
#include <react/renderer/components/view/ViewProps.h>
|
|
13
|
-
#include <react/renderer/core/PropsParserContext.h>
|
|
14
|
-
|
|
15
|
-
namespace facebook::react {
|
|
16
|
-
|
|
17
|
-
enum class ReactNativeBlurViewType { Blur, LiquidGlass };
|
|
18
|
-
|
|
19
|
-
static inline void fromRawValue(const PropsParserContext& context, const RawValue &value, ReactNativeBlurViewType &result) {
|
|
20
|
-
auto string = (std::string)value;
|
|
21
|
-
if (string == "blur") { result = ReactNativeBlurViewType::Blur; return; }
|
|
22
|
-
if (string == "liquidGlass") { result = ReactNativeBlurViewType::LiquidGlass; return; }
|
|
23
|
-
abort();
|
|
24
|
-
}
|
|
25
|
-
|
|
26
|
-
static inline std::string toString(const ReactNativeBlurViewType &value) {
|
|
27
|
-
switch (value) {
|
|
28
|
-
case ReactNativeBlurViewType::Blur: return "blur";
|
|
29
|
-
case ReactNativeBlurViewType::LiquidGlass: return "liquidGlass";
|
|
30
|
-
}
|
|
31
|
-
}
|
|
32
|
-
enum class ReactNativeBlurViewBlurType { Xlight, Light, Dark, ExtraDark, Regular, Prominent, SystemUltraThinMaterial, SystemThinMaterial, SystemMaterial, SystemThickMaterial, SystemChromeMaterial };
|
|
33
|
-
|
|
34
|
-
static inline void fromRawValue(const PropsParserContext& context, const RawValue &value, ReactNativeBlurViewBlurType &result) {
|
|
35
|
-
auto string = (std::string)value;
|
|
36
|
-
if (string == "xlight") { result = ReactNativeBlurViewBlurType::Xlight; return; }
|
|
37
|
-
if (string == "light") { result = ReactNativeBlurViewBlurType::Light; return; }
|
|
38
|
-
if (string == "dark") { result = ReactNativeBlurViewBlurType::Dark; return; }
|
|
39
|
-
if (string == "extraDark") { result = ReactNativeBlurViewBlurType::ExtraDark; return; }
|
|
40
|
-
if (string == "regular") { result = ReactNativeBlurViewBlurType::Regular; return; }
|
|
41
|
-
if (string == "prominent") { result = ReactNativeBlurViewBlurType::Prominent; return; }
|
|
42
|
-
if (string == "systemUltraThinMaterial") { result = ReactNativeBlurViewBlurType::SystemUltraThinMaterial; return; }
|
|
43
|
-
if (string == "systemThinMaterial") { result = ReactNativeBlurViewBlurType::SystemThinMaterial; return; }
|
|
44
|
-
if (string == "systemMaterial") { result = ReactNativeBlurViewBlurType::SystemMaterial; return; }
|
|
45
|
-
if (string == "systemThickMaterial") { result = ReactNativeBlurViewBlurType::SystemThickMaterial; return; }
|
|
46
|
-
if (string == "systemChromeMaterial") { result = ReactNativeBlurViewBlurType::SystemChromeMaterial; return; }
|
|
47
|
-
abort();
|
|
48
|
-
}
|
|
49
|
-
|
|
50
|
-
static inline std::string toString(const ReactNativeBlurViewBlurType &value) {
|
|
51
|
-
switch (value) {
|
|
52
|
-
case ReactNativeBlurViewBlurType::Xlight: return "xlight";
|
|
53
|
-
case ReactNativeBlurViewBlurType::Light: return "light";
|
|
54
|
-
case ReactNativeBlurViewBlurType::Dark: return "dark";
|
|
55
|
-
case ReactNativeBlurViewBlurType::ExtraDark: return "extraDark";
|
|
56
|
-
case ReactNativeBlurViewBlurType::Regular: return "regular";
|
|
57
|
-
case ReactNativeBlurViewBlurType::Prominent: return "prominent";
|
|
58
|
-
case ReactNativeBlurViewBlurType::SystemUltraThinMaterial: return "systemUltraThinMaterial";
|
|
59
|
-
case ReactNativeBlurViewBlurType::SystemThinMaterial: return "systemThinMaterial";
|
|
60
|
-
case ReactNativeBlurViewBlurType::SystemMaterial: return "systemMaterial";
|
|
61
|
-
case ReactNativeBlurViewBlurType::SystemThickMaterial: return "systemThickMaterial";
|
|
62
|
-
case ReactNativeBlurViewBlurType::SystemChromeMaterial: return "systemChromeMaterial";
|
|
63
|
-
}
|
|
64
|
-
}
|
|
65
|
-
enum class ReactNativeBlurViewGlassType { Clear, Regular };
|
|
66
|
-
|
|
67
|
-
static inline void fromRawValue(const PropsParserContext& context, const RawValue &value, ReactNativeBlurViewGlassType &result) {
|
|
68
|
-
auto string = (std::string)value;
|
|
69
|
-
if (string == "clear") { result = ReactNativeBlurViewGlassType::Clear; return; }
|
|
70
|
-
if (string == "regular") { result = ReactNativeBlurViewGlassType::Regular; return; }
|
|
71
|
-
abort();
|
|
72
|
-
}
|
|
73
|
-
|
|
74
|
-
static inline std::string toString(const ReactNativeBlurViewGlassType &value) {
|
|
75
|
-
switch (value) {
|
|
76
|
-
case ReactNativeBlurViewGlassType::Clear: return "clear";
|
|
77
|
-
case ReactNativeBlurViewGlassType::Regular: return "regular";
|
|
78
|
-
}
|
|
79
|
-
}
|
|
80
|
-
|
|
81
|
-
class ReactNativeBlurViewProps final : public ViewProps {
|
|
82
|
-
public:
|
|
83
|
-
ReactNativeBlurViewProps() = default;
|
|
84
|
-
ReactNativeBlurViewProps(const PropsParserContext& context, const ReactNativeBlurViewProps &sourceProps, const RawProps &rawProps);
|
|
85
|
-
|
|
86
|
-
#pragma mark - Props
|
|
87
|
-
|
|
88
|
-
std::string glassTintColor{"clear"};
|
|
89
|
-
double glassOpacity{1.0};
|
|
90
|
-
double blurAmount{10.0};
|
|
91
|
-
ReactNativeBlurViewType type{ReactNativeBlurViewType::Blur};
|
|
92
|
-
ReactNativeBlurViewBlurType blurType{ReactNativeBlurViewBlurType::Xlight};
|
|
93
|
-
ReactNativeBlurViewGlassType glassType{ReactNativeBlurViewGlassType::Clear};
|
|
94
|
-
std::string reducedTransparencyFallbackColor{"#FFFFFF"};
|
|
95
|
-
bool isInteractive{true};
|
|
96
|
-
};
|
|
97
|
-
|
|
98
|
-
enum class ReactNativeGlassEffectContainerGlassType { Clear, Regular };
|
|
99
|
-
|
|
100
|
-
static inline void fromRawValue(const PropsParserContext& context, const RawValue &value, ReactNativeGlassEffectContainerGlassType &result) {
|
|
101
|
-
auto string = (std::string)value;
|
|
102
|
-
if (string == "clear") { result = ReactNativeGlassEffectContainerGlassType::Clear; return; }
|
|
103
|
-
if (string == "regular") { result = ReactNativeGlassEffectContainerGlassType::Regular; return; }
|
|
104
|
-
abort();
|
|
105
|
-
}
|
|
106
|
-
|
|
107
|
-
static inline std::string toString(const ReactNativeGlassEffectContainerGlassType &value) {
|
|
108
|
-
switch (value) {
|
|
109
|
-
case ReactNativeGlassEffectContainerGlassType::Clear: return "clear";
|
|
110
|
-
case ReactNativeGlassEffectContainerGlassType::Regular: return "regular";
|
|
111
|
-
}
|
|
112
|
-
}
|
|
113
|
-
|
|
114
|
-
class ReactNativeGlassEffectContainerProps final : public ViewProps {
|
|
115
|
-
public:
|
|
116
|
-
ReactNativeGlassEffectContainerProps() = default;
|
|
117
|
-
ReactNativeGlassEffectContainerProps(const PropsParserContext& context, const ReactNativeGlassEffectContainerProps &sourceProps, const RawProps &rawProps);
|
|
118
|
-
|
|
119
|
-
#pragma mark - Props
|
|
120
|
-
|
|
121
|
-
ReactNativeGlassEffectContainerGlassType glassType{ReactNativeGlassEffectContainerGlassType::Clear};
|
|
122
|
-
std::string glassTintColor{"clear"};
|
|
123
|
-
double glassOpacity{1.0};
|
|
124
|
-
bool isInteractive{true};
|
|
125
|
-
double spacing{8.0};
|
|
126
|
-
bool enableMorphing{true};
|
|
127
|
-
int morphingDuration{300};
|
|
128
|
-
std::string reducedTransparencyFallbackColor{"#FFFFFF"};
|
|
129
|
-
};
|
|
130
|
-
|
|
131
|
-
} // namespace facebook::react
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* This code was generated by [react-native-codegen](https://www.npmjs.com/package/react-native-codegen).
|
|
3
|
-
*
|
|
4
|
-
* Do not edit this file as changes may cause incorrect behavior and will be lost
|
|
5
|
-
* once the code is regenerated.
|
|
6
|
-
*
|
|
7
|
-
* @generated by codegen project: GenerateModuleCpp.js
|
|
8
|
-
*/
|
|
9
|
-
|
|
10
|
-
#include "ReactNativeBlurViewSpecJSI.h"
|
|
11
|
-
|
|
12
|
-
namespace facebook::react {
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
} // namespace facebook::react
|
|
@@ -1,19 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* This code was generated by [react-native-codegen](https://www.npmjs.com/package/react-native-codegen).
|
|
3
|
-
*
|
|
4
|
-
* Do not edit this file as changes may cause incorrect behavior and will be lost
|
|
5
|
-
* once the code is regenerated.
|
|
6
|
-
*
|
|
7
|
-
* @generated by codegen project: GenerateModuleH.js
|
|
8
|
-
*/
|
|
9
|
-
|
|
10
|
-
#pragma once
|
|
11
|
-
|
|
12
|
-
#include <ReactCommon/TurboModule.h>
|
|
13
|
-
#include <react/bridging/Bridging.h>
|
|
14
|
-
|
|
15
|
-
namespace facebook::react {
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
} // namespace facebook::react
|
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
|
|
2
|
-
/**
|
|
3
|
-
* This code was generated by [react-native-codegen](https://www.npmjs.com/package/react-native-codegen).
|
|
4
|
-
*
|
|
5
|
-
* Do not edit this file as changes may cause incorrect behavior and will be lost
|
|
6
|
-
* once the code is regenerated.
|
|
7
|
-
*
|
|
8
|
-
* @generated by codegen project: GenerateShadowNodeCpp.js
|
|
9
|
-
*/
|
|
10
|
-
|
|
11
|
-
#include <react/renderer/components/ReactNativeBlurViewSpec/ShadowNodes.h>
|
|
12
|
-
|
|
13
|
-
namespace facebook::react {
|
|
14
|
-
|
|
15
|
-
extern const char ReactNativeBlurViewComponentName[] = "ReactNativeBlurView";
|
|
16
|
-
extern const char ReactNativeGlassEffectContainerComponentName[] = "ReactNativeGlassEffectContainer";
|
|
17
|
-
|
|
18
|
-
} // namespace facebook::react
|
|
@@ -1,43 +0,0 @@
|
|
|
1
|
-
|
|
2
|
-
/**
|
|
3
|
-
* This code was generated by [react-native-codegen](https://www.npmjs.com/package/react-native-codegen).
|
|
4
|
-
*
|
|
5
|
-
* Do not edit this file as changes may cause incorrect behavior and will be lost
|
|
6
|
-
* once the code is regenerated.
|
|
7
|
-
*
|
|
8
|
-
* @generated by codegen project: GenerateShadowNodeH.js
|
|
9
|
-
*/
|
|
10
|
-
|
|
11
|
-
#pragma once
|
|
12
|
-
|
|
13
|
-
#include <react/renderer/components/ReactNativeBlurViewSpec/EventEmitters.h>
|
|
14
|
-
#include <react/renderer/components/ReactNativeBlurViewSpec/Props.h>
|
|
15
|
-
#include <react/renderer/components/ReactNativeBlurViewSpec/States.h>
|
|
16
|
-
#include <react/renderer/components/view/ConcreteViewShadowNode.h>
|
|
17
|
-
#include <jsi/jsi.h>
|
|
18
|
-
|
|
19
|
-
namespace facebook::react {
|
|
20
|
-
|
|
21
|
-
JSI_EXPORT extern const char ReactNativeBlurViewComponentName[];
|
|
22
|
-
|
|
23
|
-
/*
|
|
24
|
-
* `ShadowNode` for <ReactNativeBlurView> component.
|
|
25
|
-
*/
|
|
26
|
-
using ReactNativeBlurViewShadowNode = ConcreteViewShadowNode<
|
|
27
|
-
ReactNativeBlurViewComponentName,
|
|
28
|
-
ReactNativeBlurViewProps,
|
|
29
|
-
ReactNativeBlurViewEventEmitter,
|
|
30
|
-
ReactNativeBlurViewState>;
|
|
31
|
-
|
|
32
|
-
JSI_EXPORT extern const char ReactNativeGlassEffectContainerComponentName[];
|
|
33
|
-
|
|
34
|
-
/*
|
|
35
|
-
* `ShadowNode` for <ReactNativeGlassEffectContainer> component.
|
|
36
|
-
*/
|
|
37
|
-
using ReactNativeGlassEffectContainerShadowNode = ConcreteViewShadowNode<
|
|
38
|
-
ReactNativeGlassEffectContainerComponentName,
|
|
39
|
-
ReactNativeGlassEffectContainerProps,
|
|
40
|
-
ReactNativeGlassEffectContainerEventEmitter,
|
|
41
|
-
ReactNativeGlassEffectContainerState>;
|
|
42
|
-
|
|
43
|
-
} // namespace facebook::react
|
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
|
|
2
|
-
/**
|
|
3
|
-
* This code was generated by [react-native-codegen](https://www.npmjs.com/package/react-native-codegen).
|
|
4
|
-
*
|
|
5
|
-
* Do not edit this file as changes may cause incorrect behavior and will be lost
|
|
6
|
-
* once the code is regenerated.
|
|
7
|
-
*
|
|
8
|
-
* @generated by codegen project: GenerateStateCpp.js
|
|
9
|
-
*/
|
|
10
|
-
#include <react/renderer/components/ReactNativeBlurViewSpec/States.h>
|
|
11
|
-
|
|
12
|
-
namespace facebook::react {
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
} // namespace facebook::react
|
|
@@ -1,41 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* This code was generated by [react-native-codegen](https://www.npmjs.com/package/react-native-codegen).
|
|
3
|
-
*
|
|
4
|
-
* Do not edit this file as changes may cause incorrect behavior and will be lost
|
|
5
|
-
* once the code is regenerated.
|
|
6
|
-
*
|
|
7
|
-
* @generated by codegen project: GenerateStateH.js
|
|
8
|
-
*/
|
|
9
|
-
#pragma once
|
|
10
|
-
|
|
11
|
-
#ifdef ANDROID
|
|
12
|
-
#include <folly/dynamic.h>
|
|
13
|
-
#endif
|
|
14
|
-
|
|
15
|
-
namespace facebook::react {
|
|
16
|
-
|
|
17
|
-
class ReactNativeBlurViewState {
|
|
18
|
-
public:
|
|
19
|
-
ReactNativeBlurViewState() = default;
|
|
20
|
-
|
|
21
|
-
#ifdef ANDROID
|
|
22
|
-
ReactNativeBlurViewState(ReactNativeBlurViewState const &previousState, folly::dynamic data){};
|
|
23
|
-
folly::dynamic getDynamic() const {
|
|
24
|
-
return {};
|
|
25
|
-
};
|
|
26
|
-
#endif
|
|
27
|
-
};
|
|
28
|
-
|
|
29
|
-
class ReactNativeGlassEffectContainerState {
|
|
30
|
-
public:
|
|
31
|
-
ReactNativeGlassEffectContainerState() = default;
|
|
32
|
-
|
|
33
|
-
#ifdef ANDROID
|
|
34
|
-
ReactNativeGlassEffectContainerState(ReactNativeGlassEffectContainerState const &previousState, folly::dynamic data){};
|
|
35
|
-
folly::dynamic getDynamic() const {
|
|
36
|
-
return {};
|
|
37
|
-
};
|
|
38
|
-
#endif
|
|
39
|
-
};
|
|
40
|
-
|
|
41
|
-
} // namespace facebook::react
|