Skip to content

Commit

Permalink
Add extra white line at the end of the file as xcode projects favor h…
Browse files Browse the repository at this point in the history
…aving an empty line at the end
  • Loading branch information
Alexander Saelmans authored and MarkOSullivan94 committed Sep 24, 2022
1 parent ea57bf2 commit e6251ee
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/ios.dart
Expand Up @@ -157,7 +157,7 @@ Future<void> changeIosLauncherIcon(String iconName, String? flavor) async {
}
}

final String entireFile = lines.join('\n');
final String entireFile = '${lines.join('\n')}\n';
await iOSConfigFile.writeAsString(entireFile);
}

Expand Down

0 comments on commit e6251ee

Please sign in to comment.