简体   繁体   中英

How to create a package with support for both flutter and dart at the same time

I want to build a package for Flutter and Dart, but I don't have any previous experience with package development. I am not sure how to create the package. Should I use

flutter create --template=package

or

dart create -t package

I want support for both Flutter and Dart.

I looked at the Flutter documentation on creating packages, but I couldn't understand if it would create a package with Flutter only support, or both Flutter and Dart support.

First, use the following command to check if your package meets all the requirements to publish the package.

dart pub publish --dry-run

Once you are sure that your package is ready to deploy on pub dev run this command:

dart pub publish

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM