Skip to content
This repository was archived by the owner on Dec 19, 2021. It is now read-only.

Commit 0f915d3

Browse files
authored
Merge pull request #43 from jasonfrasch/patch-1
fix(loading-indicator.ios): allow message to line break in iOS
2 parents e991fc4 + 1972e2a commit 0f915d3

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/loading-indicator.ios.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,8 @@ export class LoadingIndicator {
2626
// options
2727
if (options.message) {
2828
this._hud.label.text = options.message;
29+
// allow line breaking
30+
this._hud.label.numberOfLines = 0;
2931
}
3032

3133
if (options.progress) {

0 commit comments

Comments
 (0)