Post

Replies

Boosts

Views

Activity

Change status bar text color SwiftUI
Good afternoon! Can you tell me how I can solve the problem? In my app there are 4 color themes of the background (like in the standard Books app). In the standard mode is the status bar according to the system color scheme, which is not suitable for white background and white status bar and vice versa with black background. At this point, the best I could think of and find is: .onChange(of: store.colorStatusBar) { newValue in UIApplication.shared.statusBarStyle = store.colorStatusBar } But Xcode writes that this code is out of date and displays a warning: 'statusBarStyle' was deprecated in iOS 13.0: Use the statusBarManager property of the window scene instead. I haven't found a working example with statusBarManager. Can you tell me how to redo it or fix it?
0
1
1.7k
Nov ’21
Lock exposure on the preview of the photo capture in SwiftUII
Good afternoon! Can you advise, I want to implement photo exposure fixing by clicking on photo preview point, at the moment I use DragGesture to get CGPoint and pass it to capture setup let device = self.videoDeviceInput.device do { try device.lockForConfiguration() if device.isFocusPointOfInterestSupported { device.exposurePointOfInterest = focusPoint device.exposureMode = .autoExpose device.unlockForConfiguration() } } The values are printed to the terminal, but in the preview it feels like one point closer to the bottom edge is being used. The code for the view is: .gesture( DragGesture(minimumDistance: 0) .onChanged({ value in self.expFactor = value.location print(expFactor) }) .onEnded({ value in model.exp(with: expFactor) }) Can you tell me if anyone has already tried to implement the fixing in SwiftUI, I want it roughly like the standard camera.
0
0
560
Aug ’21
How to correctly implement a connection between different views for general object changes
Good afternoon! Tell me how to correctly implement a connection between different views for general object changes? For example, there is 1 view where I use the button to change the background color, go to view 2 and there is already a changed background color and vice versa with view 2 change the color for all other views? I tried to use "ObservableObject" but I get to change the color on one view, when I switch, the standard is restored in the next view class Store: ObservableObject {     @Published var colorBackground = "Black" } View connection @ObservedObject var store: Store Button Button(action: {                	self.store.colorBackground = "Black"              	}, label: {                           }) Background color ZStack {         Color(store.colorBackground)            .edgesIgnoringSafeArea(.all) }
3
0
561
Nov ’20
Work big text in SwiftUI
Hello! Can you tell me what is the best way to work with text with more than 1000 characters (application for reference)? I have a title and body text, I use: let text1 = "title text" let text2 = """ 						body text 						""" and its display: VStack { Text (text1) 	 .modificator () Text (text2) 	 .modificator () } How can you localize for different countries? Or are there more correct methods for displaying large text?
1
0
1.7k
Nov ’20
Positioning with MapUserTrackingMode SwiftUI 2.0
Hello!) Tell me why the location display does not work in the simulator?And how to fix the problem? Thanks! import SwiftUI import MapKit struct ContentView: View {     @State private var region = MKCoordinateRegion(center: CLLocationCoordinate2D(latitude: 34.002871, longitude: -118.157545), span: MKCoordinateSpan(latitudeDelta: 0.03, longitudeDelta: 0.03))     @State private var trackingMode = MapUserTrackingMode.follow     var body: some View {         Map(coordinateRegion: $region, interactionModes: .all, showsUserLocation: true, userTrackingMode: $trackingMode)     } } struct ContentView_Previews: PreviewProvider {     static var previews: some View {         ContentView()     } }
1
0
808
Jul ’20