File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
Examples/CaseStudies/SwiftUICaseStudies Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 2929 strategy :
3030 matrix :
3131 xcode :
32- # - 11.3
32+ - 11.3
3333 - 11.4
3434 - 11.5
3535 steps :
Original file line number Diff line number Diff line change @@ -65,7 +65,7 @@ struct AnimationsView: View {
6565 )
6666 }
6767 . frame ( maxWidth: . infinity, maxHeight: . infinity)
68- . background ( self . colorScheme == . dark ? Color . black : Color . white)
68+ . background ( self . colorScheme == . dark ? Color . black : . white)
6969 . simultaneousGesture (
7070 DragGesture ( minimumDistance: 0 ) . onChanged { gesture in
7171 withAnimation ( . interactiveSpring( response: 0.25 , dampingFraction: 0.1 ) ) {
@@ -77,7 +77,7 @@ struct AnimationsView: View {
7777 " Big mode " ,
7878 isOn:
7979 viewStore
80- . binding ( get: \ . isCircleScaled, send: AnimationsAction . circleScaleToggleChanged)
80+ . binding ( get: { $0 . isCircleScaled } , send: AnimationsAction . circleScaleToggleChanged)
8181 . animation ( . interactiveSpring( response: 0.25 , dampingFraction: 0.1 ) )
8282 )
8383 . padding ( )
You can’t perform that action at this time.
0 commit comments