Posts

Post not yet marked as solved
2 Replies
0 Views
Turned out to be my fault. I cut each View element individually until the borders returned to find the problem. One of my padding modifiers uses a variable and I'm guessing the preview breaks when it doesn't explicitly get a Double there. Fixed it by just changing padding(.bottom, myVariable) to padding(.bottom, 0.0 + myVariable)