Google Fonts Not Working in Bubble iOS App

I am using a Google font in the Bubble Account iOS app for a native app, and it will not load the font. It only shows Times New Roman. Wondering if anyone else also has this issue. Any help is appreciated.

Yes that’s an issue with our current implementation of iOS apps. We’ll fix that when we’ll get out of beta. If that’s a big issue reach out and we’ll see if we can find a workaround, but it’ll go away with the mobile push.

I don’t think it helps within the Bubble iOS native app. But I ran into a similar issue once I had a native app using Phonegap (contact Bubble support for more details).

Font’s were not loading on the native app until I added this:

<link href='https://fonts.googleapis.com/css?family=Oxygen:400,300,700&subset=latin,latin-ext' rel='stylesheet' type='text/css'>

To the phonegap zip’s index.html file’s <head>. Then adding this:

font-family: 'Oxygen', sans-serif;

to index.css

For greater context, here’s how it looks now. Seems to be working fine.

index.css

body {
    -webkit-touch-callout: none;                /* prevent callout to copy image, etc when tap to hold */
    -webkit-text-size-adjust: none;             /* prevent webkit from resizing text to fit */
    -webkit-user-select: none;                  /* prevent copy paste, to allow, change 'none' to 'text' */
    background-color: rgb(82, 173, 224);
    background-attachment:fixed;
    font-family:'HelveticaNeue-Light', 'HelveticaNeue', Helvetica, Arial, sans-serif;
    font-family: 'Oxygen', sans-serif;
    font-size:15px;
    height:100%;
    margin:0px;
    padding:0px;
    width:100%;
}

index.html

<head>
    <link href='https://fonts.googleapis.com/css?family=Oxygen:400,300,700&subset=latin,latin-ext' rel='stylesheet' type='text/css'>

yes its too important can you fix it