native macOS codings agent orchestrator
6
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge pull request #201 from supabitapp/sbertix/row-flashing

Scope shimmer animation to prevent row blinking

authored by

Stefano Bertagno and committed by
GitHub
6f8a9aa2 5016e259

+4 -4
+4 -4
supacode/Features/Repositories/Views/WorktreeRow.swift
··· 425 425 startPoint: phase ? UnitPoint(x: 1, y: 1) : UnitPoint(x: -0.5, y: -0.5), 426 426 endPoint: phase ? UnitPoint(x: 1.5, y: 1.5) : UnitPoint(x: 0, y: 0) 427 427 ) 428 - ) 429 - .animation( 430 - isActive ? .linear(duration: 1.5).delay(0.25).repeatForever(autoreverses: false) : nil, 431 - value: phase 428 + .animation( 429 + isActive ? .linear(duration: 1.5).delay(0.25).repeatForever(autoreverses: false) : nil, 430 + value: phase 431 + ) 432 432 ) 433 433 .task(id: isActive) { phase = isActive } 434 434 }