Skip to content

Commit

Permalink
feat: change text fields type
Browse files Browse the repository at this point in the history
  • Loading branch information
kaleidot725 committed Feb 16, 2025
1 parent ce7209b commit 8f43be1
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ package jp.kaleidot725.adbpad.ui.screen.setting.component

import androidx.compose.desktop.ui.tooling.preview.Preview
import androidx.compose.foundation.layout.fillMaxWidth
import androidx.compose.material.OutlinedTextField
import androidx.compose.material.Text
import androidx.compose.material.TextField
import androidx.compose.runtime.Composable
Expand All @@ -14,7 +15,7 @@ fun SettingField(
isError: Boolean,
onValueChange: (String) -> Unit,
) {
TextField(
OutlinedTextField(
value = input,
onValueChange = onValueChange,
label = { Text(title) },
Expand Down

0 comments on commit 8f43be1

Please sign in to comment.