Text
The Text
view can display one or more lines of text on a screen. It is useful for read-only information.
Syntax
Text("My Text")
Modifiers here
Any information enclosed within the double quotes "..."
will display on the screen.
Example
The following example adds the text,"Codecademy is Awesome!"
, on the display screen.
struct ContentView: View {var body: some View {VStack {Text("Codecademy is Awesome!").bold()}}}
This will display the following: