我想发布我的Flutter Web应用程序。这很好,但如果我将链接发送给某人,如果消息传递系统“解开”链接,它会显示包名称和原始描述:“一个新的Flutter项目。"。我想改变这一切。我该怎么做?谢谢.
x0fgdtte1#
检查pubspec.yaml它在文件的第一行:
pubspec.yaml
name: test_project description: A new Flutter project.
pexxcrt22#
要在嵌入中更改Web应用的描述,请首先在项目文件夹中找到/web/index.html在那里,您需要找到包含应用描述的Meta标签并更改其内容:<meta name="description" content="Your app description here!">。完成后,在控制台中使用flutter build web构建您的Web应用程序。您的新网站与正确的嵌入将在/build/web。编码愉快!
/web/index.html
<meta name="description" content="Your app description here!">
flutter build web
/build/web
2条答案
按热度按时间x0fgdtte1#
检查
pubspec.yaml
它在文件的第一行:
pexxcrt22#
要在嵌入中更改Web应用的描述,请首先在项目文件夹中找到
/web/index.html
在那里,您需要找到包含应用描述的Meta标签并更改其内容:
<meta name="description" content="Your app description here!">
。完成后,在控制台中使用
flutter build web
构建您的Web应用程序。您的新网站与正确的嵌入将在
/build/web
。编码愉快!