Skip to content

Commit 1e98d10

Browse files
authored
11.3 CI (#139)
* 11.3 CI * wip * Alternative
1 parent ed45e7f commit 1e98d10

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
strategy:
3030
matrix:
3131
xcode:
32-
# - 11.3
32+
- 11.3
3333
- 11.4
3434
- 11.5
3535
steps:

Examples/CaseStudies/SwiftUICaseStudies/01-GettingStarted-Animations.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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()

0 commit comments

Comments
 (0)