Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,9 @@ struct BarcodeScannerContainerRepresentable: UIViewControllerRepresentable {
/// based on VoiceOver state. Uses GameController framework for optimal performance when possible,
/// and falls back to UIKit UIPress events when VoiceOver is enabled.
final class GameControllerBarcodeScannerHostingController: UIHostingController<EmptyView> {
/// periphery: ignore - retain `gameControllerObserver` to keep it alive
private(set) var gameControllerObserver: GameControllerBarcodeObserver?

private(set) var uiKitObserver: UIKitBarcodeObserver?

private let configuration: HIDBarcodeParserConfiguration
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -96,8 +96,6 @@ struct EditOrderAddressForm<ViewModel: AddressFormViewModelProtocol>: View {
@Environment(\.safeAreaInsets) var safeAreaInsets: EdgeInsets
@State private var showingCustomerSearch: Bool = false

@State private var showingMapPicker = false

var body: some View {
Group {
ScrollView {
Expand Down