Fix internal recipient search fragment dialog insets.

This commit is contained in:
Cody Henthorne
2026-08-24 13:12:12 -04:00
parent 02a63b2070
commit 80b06f2f5b
@@ -12,8 +12,11 @@ import androidx.appcompat.app.AppCompatActivity
import androidx.compose.foundation.background
import androidx.compose.foundation.clickable
import androidx.compose.foundation.layout.Column
import androidx.compose.foundation.layout.WindowInsets
import androidx.compose.foundation.layout.fillMaxWidth
import androidx.compose.foundation.layout.padding
import androidx.compose.foundation.layout.safeDrawing
import androidx.compose.foundation.layout.windowInsetsPadding
import androidx.compose.foundation.lazy.LazyColumn
import androidx.compose.material3.ExperimentalMaterial3Api
import androidx.compose.material3.LocalContentColor
@@ -62,6 +65,7 @@ fun InternalSearchFragmentScreen(query: String, results: ImmutableList<InternalS
modifier = modifier
.fillMaxWidth()
.background(backgroundColor)
.windowInsetsPadding(WindowInsets.safeDrawing)
) {
item(key = -1) {
SearchBar(query, onSearchUpdated)