Does anyone know how to achieve strikethrough effect that is constantly displayed in pure TextField
?
Sample code:
@State var textFieldText: Stringvar body: some View { TextField("some_prompt", text: $textFieldText) .strikethrough()}
This compiles without problems, but it looks like this modifier is completely ignored, both in Previews and if you run the "app".