Please, ensure your title is less than 63 characters long and starts with a capital
letter.
"dependencies": {
"@angular/animations": "~13.2.0",
"@angular/common": "~13.2.0",
"@angular/compiler": "~13.2.0",
"@angular/core": "~13.2.0",
"@angular/forms": "~13.2.0",
"@angular/platform-browser": "~13.2.0",
"@angular/platform-browser-dynamic": "~13.2.0",
"@angular/router": "~13.2.0",
"@bradmartin/nativescript-sentry": "file:../patches/bradmartin-nativescript-sentry",
"@byram/nativescript-scss": "file:../../xplat/nativescript/scss",
"@byram/scss": "file:../../libs/scss",
"@nativescript-community/ui-label": "1.2.8",
"@nativescript-community/ui-material-bottomsheet": "~7.0.25",
"@nativescript/angular": "~13.0.0",
"@nativescript/apple-pay": "~0.1.1",
"@nativescript/biometrics": "~1.0.1",
"@nativescript/camera": "~5.0.12",
"@nativescript/core": "file:../patches/nativescript-core-8.2.5.tgz",
"@nativescript/firebase-analytics": "^2.2.6",
"@nativescript/firebase-core": "~2.1.0",
"@nativescript/firebase-messaging": "~2.1.0",
"@nativescript/google-pay": "~0.1.2",
"@nativescript/iqkeyboardmanager": "~2.0.0",
"@nativescript/secure-storage": "~3.0.0",
"@nativescript/theme": "~3.0.2",
"@ngx-translate/core": "~13.0.0",
"@nstudio/nativescript-checkbox": "~2.0.5",
"@nstudio/nativescript-exoplayer": "~5.0.9",
"@nstudio/nativescript-filterable-listpicker": "~3.0.1",
"@nstudio/nativescript-input-mask": "~0.1.2",
"@nstudio/nativescript-loading-indicator": "~4.1.2",
"crypto-js": "~4.1.1",
"email-validator": "~2.0.4",
"kinvey-js-sdk": "~6.0.2",
"kinvey-nativescript-sdk": "file:../patches/kinvey-nativescript-sdk",
"nativescript-feedback": "~2.0.0",
"nativescript-ngx-fonticon": "~7.0.0",
"nativescript-ui-sidedrawer": "~10.0.2",
"rxjs": "~7.5.0",
"zone.js": "~0.11.5"
},
Describe the steps to reproduce it.
<GridLayout rows="*, *, auto" columns="auto, *, auto" class="p-20">
<Label row="0" col="0" colSpan="3" class="h3" [text]="title" textWrap="true"></Label>
<GridLayout row="1" colSpan="3" rows="*" columns="*">
<HTMLLabel
fontSize="14"
[html]="label"
linkColor="#336699"
linkUnderline="true"
(linkTap)="onLinkTap($event)"
textWrap="true"
></HTMLLabel>
</GridLayout>
<Button row="2" col="0" text="No" (tap)="noTap()" class="-secondary" textTransform="capitalize"></Button>
<Button row="2" col="2" text="Yes" (tap)="yesTap()" class="-primary" textTransform="capitalize"></Button>
</GridLayout>
The fix is by explicitly putting a height value on the HTMLLabel, ideally it should scale and be visible (since textWrap is true).

Works but obviously having the large gap not defined in the layout is a negative.
Make sure to check the demo app(s) for sample usage
Make sure to check the existing issues in this repository
If the demo apps cannot help and there is no issue for your problem, tell us about it
Please, ensure your title is less than 63 characters long and starts with a capital
letter.
Which platform(s) does your issue occur on?
Please, provide the following version numbers that your issue occurs with:
package.jsonfile of yourproject and paste your dependencies and devDependencies here)
Please, tell us how to recreate the issue in as much detail as possible.
Describe the steps to reproduce it.
Is there any code involved?
The fix is by explicitly putting a height value on the HTMLLabel, ideally it should scale and be visible (since textWrap is true).

When
height=300is on theHTMLLabelthe full text of the item is shown, but not ideal since the message in the label can vary in length.Works but obviously having the large gap not defined in the layout is a negative.