Last active
April 18, 2018 08:42
-
-
Save joselcvarela/25da26564685cfab86b64389d26906aa to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ColumnLayout { | |
width: parent.width | |
TextMontserrat { | |
text: title | |
font.bold: true | |
color: colors.white | |
Layout.fillWidth: true | |
Layout.maximumHeight: 310 | |
fontSizeMode: Text.Fit | |
font.pixelSize: 150 | |
elide: Text.ElideNone | |
} | |
TextMontserrat { | |
text: subtitle | |
color: colors.white | |
Layout.fillWidth: true | |
Layout.maximumHeight: 240 | |
fontSizeMode: Text.Fit | |
font.pixelSize: 72 | |
font.weight: Font.Light | |
elide: Text.ElideNone | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment