Skip to content

Commit

Permalink
Merge pull request #123 from kaleidot725/feature/fix_setting_text_field
Browse files Browse the repository at this point in the history
feat: change text fields type
  • Loading branch information
kaleidot725 authored Feb 16, 2025
2 parents ce7209b + 8f43be1 commit bcc074c
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 bcc074c

Please sign in to comment.