Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
package com.mirego.pilot.components.ui.material3

import androidx.compose.foundation.interaction.MutableInteractionSource
import androidx.compose.foundation.layout.fillMaxWidth
import androidx.compose.foundation.text.KeyboardActions
import androidx.compose.foundation.text.KeyboardOptions
import androidx.compose.material3.LocalTextStyle
Expand Down Expand Up @@ -55,6 +56,7 @@ public fun PilotTextField(
onValueChange = pilotTextField::onValueChange,
placeholder = {
Text(
modifier = Modifier.fillMaxWidth(),
text = placeHolder,
style = placeHolderStyle,
)
Expand Down
Loading