Skip to content

Commit

Permalink
Fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
MatkovIvan committed Feb 16, 2024
1 parent 0a9f661 commit 16f408d
Showing 1 changed file with 8 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -74,8 +74,15 @@ class PopupTest {
override val safeInsets: PlatformInsets
@Composable get() = insets

override val ime: PlatformInsets
@Composable get() = PlatformInsets.Zero

@Composable
override fun excludeSafeInsets(content: @Composable () -> Unit) {
override fun excludeInsets(
safeInsets: Boolean,
ime: Boolean,
content: @Composable () -> Unit
) {
content()
}
}
Expand Down

0 comments on commit 16f408d

Please sign in to comment.