[Bug]: Incorrect Documentation for Adding theme_tailor Dependency
r-shahpasand opened this issue · 2 comments
r-shahpasand commented
Desctibe the bug
The documentation currently states that using flutter pub add --dev theme_tailor
adds the theme_tailor package to dev dependencies. However, the package should be added to the regular dependencies section of the pubspec.yaml
file.
This issue prevents users from correctly adding the theme_tailor package to their project.
Please correct the documentation to reflect the correct method for adding the package.
Reproduction steps
- Follow the documentation instructions to add theme_tailor using
flutter pub add --dev theme_tailor
. - Check the pubspec.yaml file to verify that the package is listed under dev_dependencies instead of dependencies.
Expected behaviour
Adding theme_tailor as a dependency should be achieved using flutter pub add theme_tailor
.
Actual Behavior:
Dart version
3.3.1
Package version
3.0.1
What platform are you seeing the problem on?
Windows
Relevant log output
There is no log.
Rongix commented
Thanks for spotting that! It’ll be fixed in the next release. In the meantime, would you like to contribute a quick doc fix?
r-shahpasand commented
I would be glad to contribute!