Jump to content
View in the app

A better way to browse. Learn more.

FGX Native

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (โ‹ฎ) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

Featured Replies

  • 1 month later...

After updating to this version I get this error, and the application title is fixed above!!!

D11.3 and D12.2
SDK 35, JDK 22

Imagem1(Titulo).thumb.jpeg.d3797fb1968352083ac6a27e2a782b32.jpegImagem2.thumb.jpeg.bb6259abfd1c100f666dbfdb350cdb06.jpeg

Edited by Multsoft.com

  • Author
  • Administrators

Hello,

2 hours ago, Multsoft.com said:

and the application title is fixed above!!!

The issue in your project is not the same as described in changelog. You didn't update styles.xml file correctly. Please, compare correct styles.xml file with your version and update it, if its required:

Pay attention on tagย <item name="windowActionBar">false</item> andย <item name="windowNoTitle">true</item>

<?xml version="1.0" encoding="utf-8"?>
<resources xmlns:android="http://schemas.android.com/apk/res/android">
    <!-- Basic theme for all Android versions -->
    <style name="BaseAppTheme" parent="Theme.AppCompat.Light">
        <!-- Hiding toolbar -->
        <item name="android:windowContentOverlay">@null</item>
        <item name="windowActionBar">false</item>
        <item name="windowNoTitle">true</item>
        <!-- Splash screen image, which is displayed on cold application startup before first rednering form. -->
        <item name="android:windowBackground">@drawable/launch_screen</item>
        <!-- We make the system status bar transparent so that when loading the status bar overlaps
             on a splash screen with a transparency effect -->
        <item name="android:windowTranslucentStatus">true</item>

        <!-- By default, Android does not use reels to select the date and time.
             However, we have TfgDatePicker/TfgTimePicker components that should work
             like drums. -->
        <item name="android:datePickerStyle">@style/SpinnerDatePicker</item>
        <item name="android:timePickerStyle">@style/SpinnerTimePicker</item>
    </style>

    <style name="AppTheme" parent="BaseAppTheme">
    </style>

    <!-- TfgDatePicker style for displaying component like a wheel -->
    <style name="SpinnerDatePicker" parent="android:Widget.Material.DatePicker">
        <item name="android:datePickerMode">spinner</item>
    </style>

    <!-- TfgTimePicker style for displaying component like a wheel -->
    <style name="SpinnerTimePicker" parent="android:Widget.Material.TimePicker">
        <item name="android:timePickerMode">spinner</item>
    </style>
    
    <!-- TfgCollectionView style, which is necessary for the native view to have
         the ability to display scrollbars. Even though in the end
         there can be only one scrollbar, it is necessary to specify two types here. -->
    <style name="CollectionView" parent="android:Widget">
        <item name="android:scrollbars">vertical|horizontal</item>
    </style>

    <!-- TfgVerticalScrollBar style, which is necessary for the native view to have
         the ability to display scrollbars. -->
    <style name="VerticalScrollBox">
        <item name="android:scrollbars">vertical</item>
    </style>
</resources>

Thank you

Recently Browsing 0

  • No registered users viewing this page.

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions โ†’ Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.