|
@@ -962,7 +962,7 @@ fun ColumnScope.AddRowSettingsSmart(
|
|
|
}
|
|
|
|
|
|
if (isAnySpecificSheetOpen) {
|
|
|
- val sheetStateAny = rememberModalBottomSheetState()
|
|
|
+ val sheetStateAny = rememberModalBottomSheetState(skipPartiallyExpanded = true)
|
|
|
val searchListViewModel = searchListViewModelSplash
|
|
|
// val searchText = searchListViewModel.searchText.observeAsState().value
|
|
|
var searchText1 by remember { mutableStateOf("") }
|
|
@@ -975,13 +975,14 @@ fun ColumnScope.AddRowSettingsSmart(
|
|
|
},
|
|
|
sheetState = sheetStateAny,
|
|
|
containerColor = MaterialTheme.colorScheme.onBackground,
|
|
|
- modifier = Modifier.padding(top = 50.dp)
|
|
|
+ modifier = Modifier.padding(top = 15.dp).fillMaxSize()
|
|
|
) {
|
|
|
Box(modifier = Modifier
|
|
|
.background(Color.Transparent)
|
|
|
- .fillMaxWidth()
|
|
|
- .fillMaxHeight()
|
|
|
- .padding(start = 0.dp, top = 10.dp),
|
|
|
+// .fillMaxWidth()
|
|
|
+// .fillMaxHeight()
|
|
|
+ .padding(start = 0.dp, top = 10.dp)
|
|
|
+ .fillMaxSize(),
|
|
|
) {
|
|
|
Column(
|
|
|
verticalArrangement = Arrangement.Top,
|