Signed-off-by: Matt Bruce <mbrucedogs@gmail.com>

This commit is contained in:
Matt Bruce 2026-01-25 09:35:24 -06:00
parent 2d07147fa7
commit 1e4e38b7ce

View File

@ -324,6 +324,14 @@ struct GameTableView: View, SherpaDelegate {
// Betting table - completely hidden during dealing // Betting table - completely hidden during dealing
if !isDealing { if !isDealing {
// Trend badge when there's an active streak
TrendBadgeView(
streakType: state.currentStreakInfo.type,
streakCount: state.currentStreakInfo.count,
minimumStreak: 2
)
.padding(.bottom, Design.Spacing.xSmall)
BettingTableView( BettingTableView(
gameState: state, gameState: state,
selectedChip: selectedChip selectedChip: selectedChip
@ -450,6 +458,14 @@ struct GameTableView: View, SherpaDelegate {
// Betting table - completely hidden during dealing // Betting table - completely hidden during dealing
if !isDealing { if !isDealing {
// Trend badge when there's an active streak
TrendBadgeView(
streakType: state.currentStreakInfo.type,
streakCount: state.currentStreakInfo.count,
minimumStreak: 2
)
.padding(.bottom, Design.Spacing.xSmall)
BettingTableView( BettingTableView(
gameState: state, gameState: state,
selectedChip: selectedChip selectedChip: selectedChip