From e6251ee3cb2c1880fa01563d12ff1058be301229 Mon Sep 17 00:00:00 2001 From: Alexander Saelmans Date: Thu, 6 Jan 2022 10:07:54 +0100 Subject: [PATCH] Add extra white line at the end of the file as xcode projects favor having an empty line at the end --- lib/ios.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/ios.dart b/lib/ios.dart index c9fc8e38f3..4f27c6aa80 100644 --- a/lib/ios.dart +++ b/lib/ios.dart @@ -157,7 +157,7 @@ Future changeIosLauncherIcon(String iconName, String? flavor) async { } } - final String entireFile = lines.join('\n'); + final String entireFile = '${lines.join('\n')}\n'; await iOSConfigFile.writeAsString(entireFile); }