[expo-ui] Support native corner radius in community BottomSheet
F
Fardeem Munir
backgroundStyle.backgroundColor
is forwarded to SwiftUI'spresentationBackground
, but backgroundStyle.borderRadius
is ignored.This remains unsupported in @expo/ui 57.0.11.
```tsx
<BottomSheet
backgroundStyle={{
backgroundColor: "#111",
borderRadius: 28, // Currently has no effect on native iOS sheets
}}
>
{children}
</BottomSheet>
```
Could be easily supported and happy to contribute