backgroundStyle.backgroundColor
is forwarded to SwiftUI's
presentationBackground
, 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