I am seeing some odd Text field behavior on my device that I did not see in the simulator. I have a standard grouping of text fields within a VStack that call from an @ObservedObject variable, like follows:
@ObservedObject var timer: ActivityTimer
var body: some View {
VStack {
VStack {
Text(timer.currentCountdownString).font(Font.system(size: 90))
Text(timer.currentActivityName).font(.largeTitle).bold().underline().padding(.bottom, 5)
Text(timer.currentIncline).font(.title)
}
.padding()
.cornerRadius(10)
}
When the variable changes I see the text field change on the device but every so often the output is truncated into ..., please see below. Thank you in advance for your assistance.