improvement: Limit the max lines of generic fields to 64
This commit is contained in:
parent
2df62a995a
commit
1927b066d8
|
@ -2742,7 +2742,7 @@ suspend fun RememberStateFlowScope.create(
|
||||||
leading: (@Composable RowScope.() -> Unit)? = null,
|
leading: (@Composable RowScope.() -> Unit)? = null,
|
||||||
verify: ((() -> Unit) -> Unit)? = null,
|
verify: ((() -> Unit) -> Unit)? = null,
|
||||||
onBuildActions: (ContextItemBuilder.() -> Unit)? = null,
|
onBuildActions: (ContextItemBuilder.() -> Unit)? = null,
|
||||||
maxLines: Int = Int.MAX_VALUE,
|
maxLines: Int = 64,
|
||||||
password: Boolean = false,
|
password: Boolean = false,
|
||||||
username: Boolean = false,
|
username: Boolean = false,
|
||||||
private: Boolean = false,
|
private: Boolean = false,
|
||||||
|
|
Loading…
Reference in New Issue