@ornikar/kitt-universal 29.3.2-canary.f2abfc91dffa35207c7250cfe664cca0fa103531.0 → 29.4.0

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.
@@ -3731,7 +3731,7 @@ function SpinningIcon({
3731
3731
  toValue: 1,
3732
3732
  duration: 1100,
3733
3733
  easing: reactNative.Easing.linear,
3734
- useNativeDriver: true
3734
+ useNativeDriver: reactNative.Platform.OS !== 'web'
3735
3735
  }));
3736
3736
  animation.start();
3737
3737
  return () => {
@@ -4318,8 +4318,9 @@ function CardModalAnimation({
4318
4318
  children: /*#__PURE__*/jsxRuntime.jsxs(View
4319
4319
  // This is an ugly workaround to make the Modal calculate its height correctly on Android.
4320
4320
  // This ugly workaround is used in FullScreenModalAnimation and DialogModalAnimation as well
4321
+ // TODO [expo@>=53]: Check if still needed
4321
4322
  , {
4322
- height: 1,
4323
+ height: reactNative.Platform.OS === 'android' ? 1 : undefined,
4323
4324
  position: "relative",
4324
4325
  flexGrow: 1,
4325
4326
  justifyContent: "center",
@@ -5031,8 +5032,9 @@ function DialogModalAnimation({
5031
5032
  children: /*#__PURE__*/jsxRuntime.jsxs(View
5032
5033
  // This is an ugly workaround to make the Modal calculate its height correctly on Android.
5033
5034
  // This ugly workaround is used in FullScreenModalAnimation and CardModalAnimation as well
5035
+ // TODO [expo@>=53]: Check if still needed
5034
5036
  , {
5035
- height: 1,
5037
+ height: reactNative.Platform.OS === 'android' ? 1 : undefined,
5036
5038
  position: "relative",
5037
5039
  flexGrow: 1,
5038
5040
  justifyContent: "center",
@@ -8262,8 +8264,9 @@ function FullscreenModalAnimation({
8262
8264
  children: /*#__PURE__*/jsxRuntime.jsxs(View
8263
8265
  // This is an ugly workaround to make the Modal calculate its height correctly on Android.
8264
8266
  // This ugly workaround is used in DialogModalAnimation and CardModalAnimation as well
8267
+ // TODO [expo@>=53]: Check if still needed
8265
8268
  , {
8266
- height: 1,
8269
+ height: reactNative.Platform.OS === 'android' ? 1 : undefined,
8267
8270
  position: "relative",
8268
8271
  flexGrow: 1,
8269
8272
  justifyContent: "center",