Text
Published Dec 20, 2022
Contribute to Docs
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:
Contribute to Docs
- Learn more about how to get involved.
- Edit this page on GitHub to fix an error or make an improvement.
- Submit feedback to let us know how we can improve Docs.