Signed-off-by: Matt Bruce <mbrucedogs@gmail.com>
This commit is contained in:
parent
2d07147fa7
commit
1e4e38b7ce
@ -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
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user