Add docs to explain cursor drawing behavior. (#24135)

This commit is contained in:
Gary Qian 2018-11-09 11:32:46 -08:00 committed by GitHub
parent 5b3518fe31
commit 5071657e8e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -417,6 +417,12 @@ class EditableText extends StatefulWidget {
/// How thick the cursor will be.
///
/// Defaults to 2.0
///
/// The cursor will draw under the text. The cursor width will extend
/// to the right of the boundary between characters for left-to-right text
/// and to the left for right-to-left text. This corresponds to extending
/// downstream relative to the selected position. Negative values may be used
/// to reverse this behavior.
/// {@endtemplate}
final double cursorWidth;