Advertisement
Guest User

Untitled

a guest
Jul 23rd, 2019
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.49 KB | None | 0 0
  1. /**
  2. * Simplified version of [Text] component with minimal set of customizations.
  3. *
  4. * @param text The text to display.
  5. * @param style The text style for the text.
  6. */
  7. @Composable
  8. fun Text(
  9. text: String,
  10. style: TextStyle? = null,
  11. paragraphStyle: ParagraphStyle? = null,
  12. softWrap: Boolean = DefaultSoftWrap,
  13. overflow: TextOverflow = DefaultOverflow,
  14. textScaleFactor: Float = 1.0f,
  15. maxLines: Int? = DefaultMaxLines,
  16. selectionColor: Color = DefaultSelectionColor
  17. ) {
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement