Always focus camera

This commit is contained in:
Christoph Hagen 2022-06-24 12:04:04 +02:00
parent 4b91ebcd02
commit 566163d1d0
2 changed files with 1 additions and 1 deletions

View File

@ -87,8 +87,8 @@ struct CameraView: View {
.overlay(RoundedRectangle(cornerRadius: circleSize/2) .overlay(RoundedRectangle(cornerRadius: circleSize/2)
.stroke(lineWidth: circleStrength) .stroke(lineWidth: circleStrength)
.foregroundColor(circleColor)) .foregroundColor(circleColor))
.onTapGesture(perform: didTapCircle)
.background(Color(white: 1, opacity: 0.01)) .background(Color(white: 1, opacity: 0.01))
.onAppear(perform: didTapCircle)
Spacer() Spacer()
} }
Spacer() Spacer()