Skip to content

Commit

Permalink
Disabled print statements
Browse files Browse the repository at this point in the history
Deleted old example app readme
  • Loading branch information
ryanlintott committed Oct 4, 2024
1 parent 53762fe commit a732fc6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 92 deletions.
90 changes: 0 additions & 90 deletions Example/README.md

This file was deleted.

4 changes: 2 additions & 2 deletions Sources/ILikeToMoveIt/AccessibilityMoveable.swift
Original file line number Diff line number Diff line change
Expand Up @@ -102,13 +102,13 @@ struct AccessibilityMoveableViewModifier<Item: Hashable & Equatable>: ViewModifi
.task {
/// This ensures the accessibility focus is set when the view appears as well as when the focus changes.
if accessibilityMoveController.focus == item {
print("View appeared and focus set for \(String(describing: item))")
// print("View appeared and focus set for \(String(describing: item))")
isFocused = true
}
}
.onReceive(accessibilityMoveController.$focus) { newValue in
if newValue == item {
print("Value changed and focus set for \(String(describing: newValue))")
// print("Value changed and focus set for \(String(describing: newValue))")
isFocused = true
}
}
Expand Down

0 comments on commit a732fc6

Please sign in to comment.