From 1e4e38b7ce1eba357d554a614d96191a9c0a9969 Mon Sep 17 00:00:00 2001 From: Matt Bruce Date: Sun, 25 Jan 2026 09:35:24 -0600 Subject: [PATCH] Signed-off-by: Matt Bruce --- Baccarat/Baccarat/Views/Game/GameTableView.swift | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/Baccarat/Baccarat/Views/Game/GameTableView.swift b/Baccarat/Baccarat/Views/Game/GameTableView.swift index f3c7b9d..97e9d2d 100644 --- a/Baccarat/Baccarat/Views/Game/GameTableView.swift +++ b/Baccarat/Baccarat/Views/Game/GameTableView.swift @@ -324,6 +324,14 @@ struct GameTableView: View, SherpaDelegate { // Betting table - completely hidden during dealing 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( gameState: state, selectedChip: selectedChip @@ -450,6 +458,14 @@ struct GameTableView: View, SherpaDelegate { // Betting table - completely hidden during dealing 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( gameState: state, selectedChip: selectedChip