2021年7月23日 星期五

[Flutter] 變更執行檔的檔案資訊(版本、描述、著作權)

Change the information of executable file.

找到 flutter 專案底下 windows/runner/Runner.rc

變更版本

#define VERSION_AS_NUMBER 1,0,0
#define VERSION_AS_STRING "1.0.0"

變更其他資訊

BEGIN
   VALUE "CompanyName", "公司名稱" "\0"
   VALUE "FileDescription", "檔案描述" "\0"
   VALUE "FileVersion", VERSION_AS_STRING "\0"
   VALUE "InternalName", "檔案內部名稱" "\0"
   VALUE "LegalCopyright", "著作權" "\0"
   VALUE "OriginalFilename", "原始檔名" "\0"
   VALUE "ProductName", "產品名稱" "\0"
   VALUE "ProductVersion", VERSION_AS_STRING "\0"
END

[Flutter] 變更建立後的執行檔名稱 (windows)

Change the executable name.

在 flutter 專案底下 windows/CMakeLists.txt 檔案,檔案的最下面加入底下這一行

set_target_properties(${BINARY_NAME} PROPERTIES OUTPUT_NAME_RELEASE "New Name")

[Flutter] 變更視窗的大小,並讓他啟動時出現在畫面的正中央 (windows)

Change the form size and make the starting position in the center of the screen

在 flutter 專案底下 windows/runner/main.cpp 檔案,找到底下兩行

Win32Window::Point origin(10, 10);
Win32Window::Size size(1280, 720);
並將其變更如下
int width = 800; // 設定 Form 寬度
int height = 600;  // 設定 Form 高度
int x = (GetSystemMetrics(SM_CXSCREEN) - width) / 2;
int y = (GetSystemMetrics(SM_CYSCREEN) - height) / 2;
Win32Window::Point origin(x, y);
Win32Window::Size size(width, height);

2021年7月20日 星期二

[Flutter] 變更應用程式的視窗標題 (windows)

Change the form title of your Flutter application.

在 flutter 專案底下 windows/runner/main.cpp 檔案,找到並變更底下這一行

window.CreateAndShow(L"New Title", origin, size)