The font of the DescriptionItem you can change this way:
B4X:
Dim DescriptionItem As AS_Settings_DescriptionItem = AS_Settings1.MainPage.AddDescriptionItem("","Show sync help: when enabled, you'll see an explanation alert every time you tap 'Sync' on the Today tab.")
DescriptionItem.xFont = xui.CreateDefaultBoldFont(20)
The font of the other property you can change in the CustomDrawProperty event.
B4X:
Private Sub AS_Settings1_CustomDrawProperty(CustomDrawProperty As AS_Settings_CustomDrawProperty)
Select CustomDrawProperty.Property.PropertyName
Case "PropertyName_7"
CustomDrawProperty.PropertyViews.NameLabel.Font = xui.CreateDefaultBoldFont(50)
End Select
End Sub
It is not yet possible to change the font globally for the properties.
Introducing a new library that allows you to create your own settings page with minimal code. This library comes equipped with automatic saving and loading features, making it incredibly easy to manage your settings. It supports booleans, free text, numbers, comboboxes, action buttons and more...