Skip to content

martinhaintz/flutter_launcher_name

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

15 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

flutter_launcher_name

A command-line tool which simplifies the task of updating your Flutter app's launcher name. If you user this package, You don't need modify AndroidManifest.xml or Info.plist.

✨ What's New

📖 Guide

1. Setup the config file

Add your Flutter Launcher name configuration to your pubspec.yaml. An example is shown below.

dev_dependencies: 
  flutter_launcher_name: "^0.0.1"
  
flutter_launcher_name:
  name: "yourNewAppLauncherName"

If no flutter_launcher_name is specified or invalid, the default name from the pubspec.yaml file will be used.

2. Run the package

After setting up the configuration, all that is left to do is run the package.

flutter pub get
flutter pub run flutter_launcher_name:main

Command line parameters

You can try to pass parameters directly after the command to modify your Flutter Launcher name 🌸

flutter pub run flutter_launcher_name:main "myNewAppName"

or

flutter pub run flutter_launcher_name:main myNewAppName

The commandline argument is used first, if it is absent, it will look in the pubscpec.yaml file.

🔍 Attributes

Shown below is the full list of attributes which you can specify within your Flutter Launcher name configuration.

  • name: The new application launcher name.

Releases

No releases published

Packages

No packages published

Languages

  • Dart 94.3%
  • Swift 4.0%
  • Kotlin 1.3%
  • Objective-C 0.4%