From e3e122e84f3725c2119f0eb67b009b58c0e366cf Mon Sep 17 00:00:00 2001 From: Tim Sneath Date: Wed, 23 Sep 2020 12:06:34 -0700 Subject: [PATCH] Update FlutterViewController.mm Tweaked the label here a little for style ("apps", not "application" -- plural and shorter); and "launching" rather than "re-launching"? --- .../darwin/ios/framework/Source/FlutterViewController.mm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/shell/platform/darwin/ios/framework/Source/FlutterViewController.mm b/shell/platform/darwin/ios/framework/Source/FlutterViewController.mm index 09773b0c81744..792256082fbf7 100644 --- a/shell/platform/darwin/ios/framework/Source/FlutterViewController.mm +++ b/shell/platform/darwin/ios/framework/Source/FlutterViewController.mm @@ -343,9 +343,9 @@ - (void)pushRoute:(NSString*)route { messageLabel.autoresizingMask = UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleHeight; messageLabel.text = - @"In iOS 14+, Flutter application in debug mode can only be launched from Flutter tooling, " + @"In iOS 14+, debug mode Flutter apps can only be launched from Flutter tooling, " @"IDEs with Flutter plugins or from Xcode.\n\nAlternatively, build in profile or release " - @"modes to enable re-launching from the home screen."; + @"modes to enable launching from the home screen."; [placeholder addSubview:messageLabel]; }