medyo / android-about-page

Create an awesome About Page for your Android App in 2 minutes
2.04k stars 283 forks source link

Improved Dark Mode of About Us page #148

Closed Rudrakaniya closed 3 years ago

Rudrakaniya commented 3 years ago

Problem :

If we add less number of Elements to our about page, then the hight of ScrollView will shrink to the wrap the content, which looks odd because the while colored background will show in the bottom after the end of ScorllView, to fix this issue ScrollView has a property called fillViewport.

_( fillViewport allows scrollView to extend its height equals to the full height of the device screen's height in the cases when the child of the scroll view has less height. )_

I am personally using your library in my college project. While using dark mode I saw this issue, so I thought about fixing it.

Before screenshot :

before_vv

Fixes :

After screenshot :

after_vv

Rudra, Feel free to leave your comments.

medyo commented 3 years ago

Well done @Rudrakaniya, Thank you for the contribution