linphone-desktop/linphone-app/ui/modules/Linphone/Styles/Blocks/CardBlockStyle.qml
Julien Wadel 2839e892e8 Add 2 settings :
- 'show_home_invite_button' : to hide invite button in Home.
- 'default_other_sip_account_domain' : to prefill the domain in other sip account page.

Replace ListModel by JS array because ListModel doesn't support properties.

Fix overlapping with Search bar and keypad.
2023-11-06 16:04:21 +01:00

35 lines
829 B
QML

pragma Singleton
import QtQml 2.2
import Units 1.0
import ColorsList 1.0
// =============================================================================
QtObject {
property string sectionName: 'CardBlock'
property int spacing: 30
property int width: 200
property QtObject content: QtObject {
property int height: 40
}
property QtObject description: QtObject {
property var colorModel: ColorsList.add(sectionName+'_description', 'n')
property int pointSize: Units.dp * 10
property int height: 40
}
property QtObject icon: QtObject {
property int bottomMargin: 20
property int size: 140
}
property QtObject title: QtObject {
property var colorModel: ColorsList.add(sectionName+'_title', 'j')
property int bottomMargin: 10
property int pointSize: Units.dp * 10
property int height: 20
}
}