launcher_name

A command-line tool which simplifies changing and localizing your Flutter app's launcher name on Android and iOS.

Instructions

1. Set up the config file

Add your launcher_name configuration to your pubspec.yaml as shown below.

dev_dependencies: 
  launcher_name: ^1.0.2 # check latest version on pub.dev
  
launcher_name:
  default: "Default Launcher Name (English)"
  es: "Spanish Launcher Name"
  fr: "French Launcher Name"
  de: "German Launcher Name"
  [...]

2. Run the command

After setting up the configuration, run the commands in your terminal.

flutter pub get
dart run launcher_name:main

Parameters

You can specify as many languages as you want. The default parameter is required, the rest is optional.

You can find a list of some possible language tags at https://en.wikipedia.org/wiki/List_of_ISO_639-1_codes.

Contact

You spotted an error? You want to get in touch with me? Write me an eMail at oj.creator@gmail.com.