Parameters
Whether to apply bold styling. Defaults to
true if not specified.Makes text bold or toggles bold styling.
.bold(isActive?: boolean): Component;
true if not specified.Text("Bold text")
.bold()
Text("Maybe bold")
.bold(shouldBeBold)
Text("Not bold text")
.bold(false)