version: 1.0.0+1
environment:
sdk: ">=2.0.0-dev.68.0 <3.0.0"
dependencies:
flutter:
sdk: flutter
sqflite: any
path_provider: any
intl: ^0.15.7
# The following adds the Cupertino Icons font to your application.
# Use with the CupertinoIcons class for iOS style icons.
cupertino_icons: ^0.1.2
dev_dependencies:
flutter_test:
sdk: flutter
What things are written in it?
The version of your application or package.
Your application or package claims to support Dart SDK within this version range
Your application or package depends on the
flutterpackage which can be found in the SDKYour application or package depends on the package
sqflitefrom https://pub.dartlang.org with no specific version constraint.Your application or package depends on the package
intlfrom https://pub.dartlang.org on any version0.15.7or later but before0.16.0.The
^changes the meaning for versions1.0.0and later.^0.15.7means>=0.15.7 <0.16.0^1.15.7means>=1.15.7 <2.0.0because for versions <
1.0.0breaking changes are indicated by incrementing the middle number, while for >=1.0.0breaking changes are indicated by incrementing the first part of the version.