We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7701b32 commit 88589b6Copy full SHA for 88589b6
aztec/src/main/kotlin/org/wordpress/aztec/AlignmentApproach.kt
@@ -1,3 +1,9 @@
1
package org.wordpress.aztec
2
3
-enum class AlignmentApproach { SPAN_LEVEL, VIEW_LEVEL }
+/**
4
+ * With [SPAN_LEVEL] any alignment must be specified at the span level. Importantly, this
5
+ * means that the View's gravity will always be ignored in determining the text's alignment.
6
+ *
7
+ * With [VIEW_LEVEL] alignment, the alignment is determined by the View's gravity.
8
+ */
9
+enum class AlignmentApproach { SPAN_LEVEL, VIEW_LEVEL }
0 commit comments