pmkruyen / dearscholar

DearScholar: An open-source smartphone app for longitudinal scientific qualitative and quantitative (self-report) diary, log and survey research
GNU General Public License v3.0
10 stars 4 forks source link

Full screen mode in Android #1

Open pmkruyen opened 4 years ago

pmkruyen commented 4 years ago

Buttons at the bottom of the survey models are only partially visible for Android users.

pmkruyen commented 4 years ago

Work around implemented with...

window.addEventListener("keyboardWillShow", function(e) {
    $(".bottomButtons").hide();
});

... but a transparant screen is showed a split second.

Note. Also, a transparant screen is showed between the splash screen and the login screen. Same problem?