Skip to content Skip to sidebar Skip to footer

Gluon-mobile, No Fonts On Android 8.0 (oreo) Oneplus5t Phone

Has anyone tried running a gluon-mobile app on Android 8.0 (Oreo)? I have a OnePlus5T and tried installing the fifty-state app with latest source from GitHub and get little boxes w

Solution 1:

Thanks José for pointing me in the right direction. Ultimately I was able to fix the fonts on my OnePlus5T by just adding the below to my main .css file, no java changes needed :-)

.app-bar > .title-box > .label,
.dialog > .container > .dialog-title,
.button, .check-box, .label, .text-field,
.header, .footer, .list-cell, .text-area {
    -fx-font-family: 'san-serif';
}

.icon-text {
    -fx-font-family: 'Material Icons';
}

Post a Comment for "Gluon-mobile, No Fonts On Android 8.0 (oreo) Oneplus5t Phone"