Skip to content

Commit bd3694b

Browse files
committed
fix # Tooltip cutting on Android #4
1 parent 971c2b6 commit bd3694b

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

src/tooltip-ns.android.ts

+6-1
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,12 @@ export class TooltipNs {
5656
if (options.android.fadeDuration) {
5757
this.builder.fadeDuration(options.android.fadeDuration);
5858
}
59-
this.builder.fitToScreen(false);
59+
60+
if (options.android.fitToScreen) {
61+
this.builder.fitToScreen(true);
62+
} else {
63+
this.builder.fitToScreen(false);
64+
}
6065

6166
if (options.android.width) {
6267
this.builder.maxWidth(options.android.width);

src/tooltip-ns.common.ts

+1
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ export interface Options {
2020
delay?: number;
2121
hideArrow?: boolean;
2222
style?: string;
23+
fitToScreen?: boolean;
2324
};
2425
}
2526

0 commit comments

Comments
 (0)