We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6e6634f commit cc5532aCopy full SHA for cc5532a
1 file changed
android/src/main/java/com/richtext/RichTextView.kt
@@ -46,11 +46,9 @@ class RichTextView : AppCompatTextView {
46
}
47
48
private fun prepareComponent() {
49
- // Initialize the component with basic TextView setup
50
- text = "RichTextView - Ready for markdown!"
51
- textSize = 16f
52
- setTextColor(Color.BLACK)
53
movementMethod = LinkMovementMethod.getInstance()
+ setPadding(0, 0, 0, 0)
+ setBackgroundColor(Color.TRANSPARENT)
54
55
56
fun setMarkdownContent(markdown: String) {
0 commit comments