I have one issue with the String truncate on the Bulls eye project. Can someone help me out with it.
Here is the code I had written, in the Preview mode it is showing properly, but wile at the time of rendering on the Simulator it’s getting truncated at the last.
Above is the screenshot of the application on Simulator, below is the code.
struct ContentView: View {
@State var alertIsVisible: Bool = false
var body: some View {
VStack {
HStack(alignment: .center, spacing: 16) {
Text("Put the bulls eye as close you can to:")
Text("100")
}
.frame(minWidth: 500, maxWidth: .infinity, alignment: .center)
// Slider Row
HStack{
Text("1")
Slider(value: .constant(50))
Text("100")
}
// Button Row
Button(action: {
self.alertIsVisible = true
}) {
Text("Hit Me!")
.fontWeight(.semibold)
.foregroundColor(.orange)
}
.alert(isPresented: $alertIsVisible){ () ->
Alert in
return Alert(title: Text("Hello There"), message: Text("This is my pop-up"), dismissButton: .default(Text("Awesome")))
}
}
}
}