Skip to content

Commit

Permalink
chore(datastore): update composeMaterial3Version (#298)
Browse files Browse the repository at this point in the history
* chore(datastore): update composeMaterial3Version and OutlinedTextField:colors method signature

* chore(datastore): ktlint

---------

Co-authored-by: govinddixit <[email protected]>
  • Loading branch information
GOVINDDIXIT and govinddixit-cred authored Dec 17, 2023
1 parent 1c2497a commit 89799f7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion dependencies.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,6 @@ ext {
navigationVersion = '2.4.1'
composeCompileVersion = '1.4.7'
composeVersion = '1.4.0'
composeMaterial3Version = '1.0.1'
composeMaterial3Version = '1.1.2'

}
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ import androidx.compose.foundation.text.KeyboardOptions
import androidx.compose.material3.Divider
import androidx.compose.material3.ExperimentalMaterial3Api
import androidx.compose.material3.OutlinedTextField
import androidx.compose.material3.OutlinedTextFieldDefaults
import androidx.compose.material3.Text
import androidx.compose.material3.TextFieldDefaults
import androidx.compose.runtime.Composable
import androidx.compose.runtime.LaunchedEffect
import androidx.compose.runtime.MutableState
Expand Down Expand Up @@ -189,7 +189,7 @@ private fun EditableField(
onValueChange = { input ->
newValue.value = input
},
colors = TextFieldDefaults.outlinedTextFieldColors(
colors = OutlinedTextFieldDefaults.colors(
focusedBorderColor = colorResource(id = R.color.pluto___text_dark_60),
unfocusedBorderColor = colorResource(id = R.color.pluto___text_dark_20)
),
Expand Down

0 comments on commit 89799f7

Please sign in to comment.