Eike Foken
Eike Foken
Nice, thank you ๐ I saw it in the jsx-runtime.js, but the export is missing in atomico package and I think TypeScript types are missing!? ```tsx import { Fragment }...
What about shorthands? See https://github.com/facebook/react-native/issues/34425#issuecomment-1236664129
What about `marginBlock` for `marginVertical` and `marginInline` for `marginHorizontal`? And of course same for padding
Ah and also I wanted to note, that `lineHeight` currently only supports pixel values. What about adding support for values like `1.5` as a multiplier of the current font-size?
It would also be nice to add `inset`, a shorthand for setting `left`, `right`, `top` and `bottom`. And also then maybe `StyleSheet.absoluteFill` and `StyleSheet.absoluteFillObject` can be deprecated?
`rem` values for Web should not be converted to pixels. React Native Web supports it ๐ #148
I also need `BackHandler` in many projects. Conditionally importing it would not always work, for example when you use RNW components in Next.js it needs to be present otherwise you...
@necolas you are suggesting to create a platform specific file to use BackHandler? But isnโt it the goal to reduce fragmentation? Also platform specific files do not work everywhere. For...
@rolandpoulter I wrote a small hook for using `BackHandler` across platforms. Simply checking `BackHandler !== undefined` is enough for Web ```tsx import * as React from "react" import { BackHandler...
@necolas is there a plan when RNW 0.19 is going to be released?