@ornikar/kitt-universal 29.3.2-canary.f2abfc91dffa35207c7250cfe664cca0fa103531.0 → 29.3.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.
@@ -4293,8 +4293,9 @@ function CardModalAnimation({
4293
4293
  children: /*#__PURE__*/jsxs(View
4294
4294
  // This is an ugly workaround to make the Modal calculate its height correctly on Android.
4295
4295
  // This ugly workaround is used in FullScreenModalAnimation and DialogModalAnimation as well
4296
+ // TODO [expo@>=53]: Check if still needed
4296
4297
  , {
4297
- height: 1,
4298
+ height: Platform.OS === 'android' ? 1 : undefined,
4298
4299
  position: "relative",
4299
4300
  flexGrow: 1,
4300
4301
  justifyContent: "center",
@@ -5005,8 +5006,9 @@ function DialogModalAnimation({
5005
5006
  children: /*#__PURE__*/jsxs(View
5006
5007
  // This is an ugly workaround to make the Modal calculate its height correctly on Android.
5007
5008
  // This ugly workaround is used in FullScreenModalAnimation and CardModalAnimation as well
5009
+ // TODO [expo@>=53]: Check if still needed
5008
5010
  , {
5009
- height: 1,
5011
+ height: Platform.OS === 'android' ? 1 : undefined,
5010
5012
  position: "relative",
5011
5013
  flexGrow: 1,
5012
5014
  justifyContent: "center",
@@ -8261,8 +8263,9 @@ function FullscreenModalAnimation({
8261
8263
  children: /*#__PURE__*/jsxs(View
8262
8264
  // This is an ugly workaround to make the Modal calculate its height correctly on Android.
8263
8265
  // This ugly workaround is used in DialogModalAnimation and CardModalAnimation as well
8266
+ // TODO [expo@>=53]: Check if still needed
8264
8267
  , {
8265
- height: 1,
8268
+ height: Platform.OS === 'android' ? 1 : undefined,
8266
8269
  position: "relative",
8267
8270
  flexGrow: 1,
8268
8271
  justifyContent: "center",