Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Change name and description of a flutter web app

I want to publish my flutter web app. This worka fine, but if I send the link to somebody, if the messaging system "unravels" links, it shows the package name and the original description: "A new Flutter project.". I want to change this. How can I do this? Thanks.

like image 904
Bennett567 Avatar asked Nov 15 '22 23:11

Bennett567


1 Answers

Check the pubspec.yaml

Its in the first lines of the file:

name: test_project
description: A new Flutter project.
like image 100
Marcel Dz Avatar answered Dec 20 '22 04:12

Marcel Dz