synopsis -> paragraph

The name of the function has been changed so it reflects the style being used
This commit is contained in:
Lukas Korba 2022-02-24 14:30:00 +01:00
parent 18d880e2ea
commit 6528309245
2 changed files with 2 additions and 2 deletions

View File

@ -70,7 +70,7 @@ struct OnboardingContentView: View {
}
Text(viewStore.steps[stepIndex].description)
.synopsisText()
.paragraphText()
.lineSpacing(2)
.opacity(0.53)
}

View File

@ -21,7 +21,7 @@ extension Text {
self.modifier(TitleTextStyle())
}
func synopsisText() -> some View {
func paragraphText() -> some View {
self.modifier(ParagraphStyle())
}