teogor / ceres

🪐 Ceres is a comprehensive Android development framework designed to streamline your app development process. Powered by the latest technologies like Jetpack Compose, Hilt, Coroutines, and Flow, Ceres empowers developers to build modern and efficient Android applications.
https://source.teogor.dev/ceres
Apache License 2.0
65 stars 4 forks source link

Fix Navigation Bar Padding Issue in Onboarding Screens #182

Closed teogor closed 8 months ago

teogor commented 8 months ago

This pull request addresses a bug where the navigation bar padding was not being applied correctly to the onboarding screens. The issue has been resolved by adding the .navigationBarsPadding() modifier to the root Box component within the composable function.

Bug Description:

Previously, the onboarding screens displayed an unwanted gap at the bottom due to the default navigation bar padding.

Solution:

This pull request introduces the .navigationBarsPadding() modifier to the root Box component. This ensures that the content of the onboarding screens fills the entire available space, eliminating the gap at the bottom.