We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2005dab commit ea5c995Copy full SHA for ea5c995
src/core/index.android.ts
@@ -285,10 +285,12 @@ class ViewWithElevationAndRipple extends View {
285
}
286
class ViewOverride extends View {
287
[androidElevationProperty.setNative](value: number) {
288
- // override to prevent override of elevation
+ // override to prevent override of dynamicElevationOffset
289
+ this[elevationProperty.setNative](value);
290
291
[androidDynamicElevationOffsetProperty.setNative](value: number) {
- // override to prevent override of dynamicElevationOffset
292
+ // override to prevent override of elevation
293
+ this[dynamicElevationOffsetProperty.setNative](value);
294
295
296
0 commit comments