We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2051e64 commit 07f0064Copy full SHA for 07f0064
1 file changed
Core/Sources/SuggestionWidget/WidgetView.swift
@@ -16,7 +16,7 @@ struct WidgetView: View {
16
var body: some View {
17
WithViewStore(store, observe: { $0.isProcessing }) { viewStore in
18
Circle()
19
- .fill(isHovering ? .white.opacity(0.8) : .white.opacity(0.3))
+ .fill(isHovering ? .white.opacity(0.5) : .white.opacity(0.15))
20
.onTapGesture {
21
withAnimation(.easeInOut(duration: 0.2)) {
22
store.send(.widgetClicked)
@@ -34,6 +34,11 @@ struct WidgetView: View {
34
if !hideCircularWidget { return 1 }
35
return viewStore.state ? 1 : 0
36
}())
37
+ .animation(
38
+ featureFlag: \.animationCCrashSuggestion,
39
+ .easeInOut(duration: 0.2),
40
+ value: viewStore.state
41
+ )
42
}
43
44
0 commit comments