AttributedString represents a string of UTF-8 text that can optionally be embellished with formatting attributes. Package ui provides the list of formatting attributes, which cover common formatting traits like boldface and color as well as advanced typographical features provided by OpenType like s
| 357 | // is built from the combination of an AttributedString and a set of |
| 358 | // layout-specific properties. |
| 359 | type AttributedString struct { |
| 360 | s *C.uiAttributedString |
| 361 | } |
| 362 | |
| 363 | // NewAttributedString creates a new AttributedString from |
| 364 | // initialString. The string will be entirely unattributed. |
nothing calls this directly
no outgoing calls
no test coverage detected