We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c109a96 commit 4f30f72Copy full SHA for 4f30f72
src/label.d.ts
@@ -27,6 +27,13 @@ export declare class Label extends TNLabel {
27
28
verticalTextAlignment: VerticalTextAlignment;
29
lineBreak: LineBreak;
30
+ linkColor: string | Color;
31
+ linkUnderline: boolean;
32
+ selectable: boolean;
33
+ autoFontSize: boolean;
34
+ autoFontSizeStep: number;
35
+ minFontSize: number;
36
+ maxFontSize: number;
37
}
38
export type VerticalTextAlignment = 'initial' | 'top' | 'middle' | 'bottom' | 'center';
39
export type LineBreak = 'end' | 'start' | 'middle' | 'none';
@@ -41,4 +48,4 @@ export interface TextShadow {
41
48
color: Color;
42
49
43
50
44
-export { enableIOSDTCoreText, createNativeAttributedString } from '@nativescript-community/text';
51
+export { createNativeAttributedString } from '@nativescript-community/text';
0 commit comments