@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.
@@ -3708,7 +3708,7 @@ function SpinningIcon({
3708
3708
  toValue: 1,
3709
3709
  duration: 1100,
3710
3710
  easing: Easing.linear,
3711
- useNativeDriver: true
3711
+ useNativeDriver: Platform.OS !== 'web'
3712
3712
  }));
3713
3713
  animation.start();
3714
3714
  return () => {
@@ -4295,8 +4295,9 @@ function CardModalAnimation({
4295
4295
  children: /*#__PURE__*/jsxs(View
4296
4296
  // This is an ugly workaround to make the Modal calculate its height correctly on Android.
4297
4297
  // This ugly workaround is used in FullScreenModalAnimation and DialogModalAnimation as well
4298
+ // TODO [expo@>=53]: Check if still needed
4298
4299
  , {
4299
- height: 1,
4300
+ height: Platform.OS === 'android' ? 1 : undefined,
4300
4301
  position: "relative",
4301
4302
  flexGrow: 1,
4302
4303
  justifyContent: "center",
@@ -5008,8 +5009,9 @@ function DialogModalAnimation({
5008
5009
  children: /*#__PURE__*/jsxs(View
5009
5010
  // This is an ugly workaround to make the Modal calculate its height correctly on Android.
5010
5011
  // This ugly workaround is used in FullScreenModalAnimation and CardModalAnimation as well
5012
+ // TODO [expo@>=53]: Check if still needed
5011
5013
  , {
5012
- height: 1,
5014
+ height: Platform.OS === 'android' ? 1 : undefined,
5013
5015
  position: "relative",
5014
5016
  flexGrow: 1,
5015
5017
  justifyContent: "center",
@@ -8239,8 +8241,9 @@ function FullscreenModalAnimation({
8239
8241
  children: /*#__PURE__*/jsxs(View
8240
8242
  // This is an ugly workaround to make the Modal calculate its height correctly on Android.
8241
8243
  // This ugly workaround is used in DialogModalAnimation and CardModalAnimation as well
8244
+ // TODO [expo@>=53]: Check if still needed
8242
8245
  , {
8243
- height: 1,
8246
+ height: Platform.OS === 'android' ? 1 : undefined,
8244
8247
  position: "relative",
8245
8248
  flexGrow: 1,
8246
8249
  justifyContent: "center",