|
@@ -82,7 +82,7 @@ fun AnySpecificScreenTV(navHostController: NavHostController) {
|
|
|
modifier = Modifier
|
|
|
.fillMaxSize()
|
|
|
.background(
|
|
|
- color = colorResource(id = R.color.background_color_gray)
|
|
|
+ color = MaterialTheme.colorScheme.background
|
|
|
)
|
|
|
.padding(bottom = 0.dp)
|
|
|
|
|
@@ -147,7 +147,7 @@ fun AnySpecificScreenTV(navHostController: NavHostController) {
|
|
|
textChanged = it
|
|
|
},
|
|
|
textStyle = MaterialTheme.typography.customTypography.bodyMedium.copy(
|
|
|
- color = colorResource(id = R.color.dark_blue_gray_text)
|
|
|
+ color = MaterialTheme.colorScheme.primary,
|
|
|
),
|
|
|
modifier = Modifier
|
|
|
.padding(top = 60.dp, end = 0.dp)
|
|
@@ -157,7 +157,7 @@ fun AnySpecificScreenTV(navHostController: NavHostController) {
|
|
|
.height(50.dp)
|
|
|
.border(
|
|
|
1.dp,
|
|
|
- colorResource(id = R.color.white),
|
|
|
+ MaterialTheme.colorScheme.onBackground,
|
|
|
shape = RoundedCornerShape(24.dp)
|
|
|
)
|
|
|
.background(color = colorResource(id = R.color.transparent)),
|
|
@@ -172,7 +172,7 @@ fun AnySpecificScreenTV(navHostController: NavHostController) {
|
|
|
Text(
|
|
|
text = "Search Location",
|
|
|
style = MaterialTheme.typography.customTypography.titleSmall.copy(
|
|
|
- color = colorResource(id = R.color.dark_blue_gray_text),
|
|
|
+ color = MaterialTheme.colorScheme.primary,
|
|
|
fontSize = 14.sp
|
|
|
)
|
|
|
)
|
|
@@ -190,23 +190,23 @@ fun AnySpecificScreenTV(navHostController: NavHostController) {
|
|
|
Icon(
|
|
|
painter = painterResource(id = R.drawable.search3x),
|
|
|
contentDescription = "Email Logo",
|
|
|
- tint = colorResource(id = R.color.dark_blue_gray_text),
|
|
|
+ tint = MaterialTheme.colorScheme.primary,
|
|
|
modifier = Modifier
|
|
|
.size(20.dp, 20.dp)
|
|
|
)
|
|
|
},
|
|
|
maxLines = 1,
|
|
|
colors = TextFieldDefaults.colors(
|
|
|
- focusedLabelColor = colorResource(id = R.color.dark_blue_gray_text),
|
|
|
- unfocusedTextColor = colorResource(id = R.color.dark_blue_gray_text),
|
|
|
- focusedTextColor = colorResource(id = R.color.dark_blue_gray_text),
|
|
|
- disabledTextColor = colorResource(id = R.color.dark_blue_gray_text),
|
|
|
- unfocusedContainerColor = colorResource(id = R.color.white),
|
|
|
- focusedContainerColor = colorResource(id = R.color.white),
|
|
|
+ focusedLabelColor = MaterialTheme.colorScheme.primary,
|
|
|
+ unfocusedTextColor = MaterialTheme.colorScheme.primary,
|
|
|
+ focusedTextColor = MaterialTheme.colorScheme.primary,
|
|
|
+ disabledTextColor = MaterialTheme.colorScheme.primary,
|
|
|
+ unfocusedContainerColor = MaterialTheme.colorScheme.onBackground,
|
|
|
+ focusedContainerColor = MaterialTheme.colorScheme.onBackground,
|
|
|
focusedIndicatorColor = colorResource(id = R.color.transparent),
|
|
|
disabledIndicatorColor = colorResource(id = R.color.transparent),
|
|
|
unfocusedIndicatorColor = colorResource(id = R.color.transparent),
|
|
|
- cursorColor = colorResource(id = R.color.dark_blue_gray_text),
|
|
|
+ cursorColor = MaterialTheme.colorScheme.primary,
|
|
|
),
|
|
|
keyboardOptions = KeyboardOptions(
|
|
|
keyboardType = KeyboardType.Email,
|
|
@@ -229,8 +229,6 @@ fun AnySpecificScreenTV(navHostController: NavHostController) {
|
|
|
.padding(top = 130.dp, start = 24.dp, end = 24.dp, bottom = 24.dp)
|
|
|
// .verticalScroll(rememberScrollState())
|
|
|
.background(Color.Transparent)
|
|
|
-
|
|
|
-
|
|
|
) {
|
|
|
LazyColumn(
|
|
|
modifier = Modifier
|