Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

🔧 [iOS・Compose Multiplatform] The issue where the bottom navigation overlapped with the Create Profile button and made it difficult to press has been fixed. #925

Merged
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
package io.github.droidkaigi.confsched.profilecard

import androidx.compose.foundation.layout.PaddingValues
import androidx.compose.ui.unit.dp
import io.github.droidkaigi.confsched.compose.EventFlow
import io.github.droidkaigi.confsched.data.Repositories
import io.github.droidkaigi.confsched.droidkaigiui.composeViewController
Expand All @@ -22,6 +24,10 @@ fun profileCardViewController(
imageBitmap.toUiImage() ?: UIImage(),
)
},
// FIXME This is a workaround. For permanent support, we will get the inset value etc. from the iOS side and respond.
contentPadding = PaddingValues(
bottom = 30.dp,
Corvus400 marked this conversation as resolved.
Show resolved Hide resolved
),
)
}

Expand Down
Loading