Hiding the buttons when the search is active
This commit is contained in:
parent
aa2b4919da
commit
a6ae25c5a1
1 changed files with 24 additions and 23 deletions
|
|
@ -19,7 +19,6 @@ package io.element.android.features.createroom.root
|
||||||
import androidx.compose.foundation.layout.Column
|
import androidx.compose.foundation.layout.Column
|
||||||
import androidx.compose.foundation.layout.fillMaxWidth
|
import androidx.compose.foundation.layout.fillMaxWidth
|
||||||
import androidx.compose.foundation.layout.padding
|
import androidx.compose.foundation.layout.padding
|
||||||
import androidx.compose.foundation.layout.size
|
|
||||||
import androidx.compose.material3.ExperimentalMaterial3Api
|
import androidx.compose.material3.ExperimentalMaterial3Api
|
||||||
import androidx.compose.material3.SearchBarDefaults
|
import androidx.compose.material3.SearchBarDefaults
|
||||||
import androidx.compose.material3.TextButton
|
import androidx.compose.material3.TextButton
|
||||||
|
|
@ -76,29 +75,31 @@ fun CreateRoomRootScreen(
|
||||||
active = isSearchActive,
|
active = isSearchActive,
|
||||||
)
|
)
|
||||||
|
|
||||||
TextButton(
|
if (!isSearchActive.value) {
|
||||||
modifier = Modifier.padding(start = 8.dp, top = 16.dp, end = 8.dp),
|
TextButton(
|
||||||
onClick = { }) {
|
modifier = Modifier.padding(start = 8.dp, top = 16.dp, end = 8.dp),
|
||||||
Icon(
|
onClick = { }) {
|
||||||
modifier = Modifier
|
Icon(
|
||||||
.padding(end = 16.dp),
|
modifier = Modifier
|
||||||
resourceId = DrawableR.drawable.ic_group, // TODO ask design for squared icon
|
.padding(end = 16.dp),
|
||||||
contentDescription = ""
|
resourceId = DrawableR.drawable.ic_group, // TODO ask design for squared icon
|
||||||
)
|
contentDescription = ""
|
||||||
Text(text = stringResource(id = StringR.string.new_room))
|
)
|
||||||
}
|
Text(text = stringResource(id = StringR.string.new_room))
|
||||||
|
}
|
||||||
|
|
||||||
TextButton(
|
TextButton(
|
||||||
modifier = Modifier.padding(horizontal = 8.dp),
|
modifier = Modifier.padding(horizontal = 8.dp),
|
||||||
onClick = { }
|
onClick = { }
|
||||||
) {
|
) {
|
||||||
Icon(
|
Icon(
|
||||||
modifier = Modifier
|
modifier = Modifier
|
||||||
.padding(end = 16.dp),
|
.padding(end = 16.dp),
|
||||||
resourceId = DrawableR.drawable.ic_share,
|
resourceId = DrawableR.drawable.ic_share,
|
||||||
contentDescription = ""
|
contentDescription = ""
|
||||||
)
|
)
|
||||||
Text(text = stringResource(id = StringR.string.invite_people_menu))
|
Text(text = stringResource(id = StringR.string.invite_people_menu))
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue