Change App Name

  1. Go to Windows Runner Config

  • Open: - windows\runner\Runner.rc

  • Look for this line: VALUE "FileDescription", "Your App Name" VALUE "InternalName", "Your App Name" VALUE "ProductName", "Your App Name"

  • Change "Your App Name" to your preferred name.

  1. Change App Title (shown in Window Title Bar)

  • Open: - windows\runner\main.cpp

  • Find this line: - window.Create(L"Your App Name", origin, size);

  • Replace "Your App Name" with your new app name.

  1. After Changes

  • Run: - flutter clean - flutter build windows

l Your Windows app will now display the new name in the title bar, executable, and file properties.

Last updated