Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -337,7 +337,7 @@ const TradingViewChart = React.forwardRef<
>
{/* Chart WebView */}
<Box
twClassName="overflow-hidden rounded-lg"
twClassName="overflow-hidden rounded-lg bg-default"
style={{ height, width: '100%', minHeight: height }} // eslint-disable-line react-native/no-inline-styles
>
{/* Show skeleton while chart is loading */}
Expand All @@ -354,7 +354,7 @@ const TradingViewChart = React.forwardRef<
<WebView
ref={webViewRef}
source={{ html: htmlContent }}
style={[styles.webView, { height, width: '100%' }]} // eslint-disable-line react-native/no-inline-styles
style={[styles.webView, { height, width: '100%', backgroundColor: 'transparent' }]} // eslint-disable-line react-native/no-inline-styles
onMessage={handleWebViewMessage}
onError={handleWebViewError}
onHttpError={(syntheticEvent) => {
Expand Down
Loading