🪐 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.
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.
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 rootBox
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 rootBox
component. This ensures that the content of the onboarding screens fills the entire available space, eliminating the gap at the bottom.