You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: apps/flipcash/features/tokens/src/main/kotlin/com/flipcash/app/tokens/internal/components/info/MarketCapSection.kt
+1Lines changed: 1 addition & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -147,6 +147,7 @@ internal fun MarketCapSection(
147
147
end = contentPadding.calculateEndPadding(),
148
148
),
149
149
data = data,
150
+
currentValue = marketCap.decimalValue,
150
151
trendType =TrendType.FirstVsLast,
151
152
selectedPeriod = selectedPeriod,
152
153
onPointHighlighted = { highlightedCapPoint = it },
Copy file name to clipboardExpand all lines: apps/flipcash/features/tokens/src/main/kotlin/com/flipcash/app/tokens/internal/components/marketcap/MarketCapChart.kt
+2-1Lines changed: 2 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -69,6 +69,7 @@ import kotlin.time.Duration
69
69
@Composable
70
70
internalfunMarketCapChart(
71
71
data:List<MarketCapPoint>,
72
+
currentValue:Double,
72
73
trendType:TrendType,
73
74
selectedPeriod:Period,
74
75
modifier:Modifier = Modifier,
@@ -92,7 +93,7 @@ internal fun MarketCapChart(
92
93
93
94
val windowedData by remember(historicalData, selectedPeriod) {
0 commit comments