Skip to content

Commit

Permalink
Fixes keyboard overriding the relay settings screen
Browse files Browse the repository at this point in the history
  • Loading branch information
vitorpamplona committed Dec 24, 2024
1 parent 72c0898 commit a195167
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ import androidx.compose.foundation.layout.Spacer
import androidx.compose.foundation.layout.consumeWindowInsets
import androidx.compose.foundation.layout.fillMaxSize
import androidx.compose.foundation.layout.fillMaxWidth
import androidx.compose.foundation.layout.imePadding
import androidx.compose.foundation.layout.padding
import androidx.compose.foundation.lazy.LazyColumn
import androidx.compose.material3.ExperimentalMaterial3Api
Expand Down Expand Up @@ -174,7 +175,8 @@ fun MappedAllRelayListView(
end = 10.dp,
top = pad.calculateTopPadding(),
bottom = pad.calculateBottomPadding(),
).consumeWindowInsets(pad),
).consumeWindowInsets(pad)
.imePadding(),
) {
item {
SettingsCategory(
Expand Down

0 comments on commit a195167

Please sign in to comment.