You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
when call an CodeScannerView and set StatusBar to hidden, it won't work. the StatusBar still showed.
hot to fix?
//swiftui test struct view
var body: some View {
CodeScannerView(codeTypes: [.qr], manualSelect: true, showViewfinder: false) { response in
if case let .success(result) = response {
print(result.string)
}
}.edgesIgnoringSafeArea(.all)
.statusBar(hidden: true)
}
The text was updated successfully, but these errors were encountered:
when call an CodeScannerView and set StatusBar to hidden, it won't work. the StatusBar still showed.
hot to fix?
The text was updated successfully, but these errors were encountered: