| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990 |
- name: twong
- description: A new Flutter project.
- # The following line prevents the package from being accidentally published to
- # pub.dev using `pub publish`. This is preferred for private packages.
- publish_to: 'none' # Remove this line if you wish to publish to pub.dev
- # The following defines the version and build number for your application.
- # A version number is three numbers separated by dots, like 1.2.43
- # followed by an optional build number separated by a +.
- # Both the version and the builder number may be overridden in flutter
- # build by specifying --build-name and --build-number, respectively.
- # In Android, build-name is used as versionName while build-number used as versionCode.
- # Read more about Android versioning at https://developer.android.com/studio/publish/versioning
- # In iOS, build-name is used as CFBundleShortVersionString while build-number used as CFBundleVersion.
- # Read more about iOS versioning at
- # https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html
- version: 1.0.0+1
- environment:
- sdk: ">=2.7.0 <3.0.0"
- dependencies:
- flutter:
- sdk: flutter
- dio: ^3.0.9 # 网络
- logger: ^0.9.4 # 日志
- provider: ^4.3.1 # 状态管理
- bot_toast: ^3.0.1 # 弹窗
- flutter_swiper: ^1.1.6 # swipe
- json_annotation: ^2.0.0 # json
- shared_preferences: ^0.5.8 # 存储
- flutter_easyrefresh: ^2.1.1 # 刷新列表
- flutter_app_upgrade: ^1.1.0 # 升级
- flutter_xupdate: ^1.0.0
- cached_network_image: ^2.2.0+1 # 网络图片
- color_thief_flutter: ^1.0.2 # 取色器
- package_info: ^0.4.0+18 # 版本信息
- flutter_html: ^1.1.1 # 解析 html
- uni_links: ^0.4.0 # url Scheme
- flutter_local_notifications: ^3.0.1 # 本地通知
- image_picker: ^0.6.7+12 # 上传图片
- alipay_kit: ^1.1.0 # alipay
- wechat_kit: ^1.1.2 # wechat
- photo_view: ^0.10.3 # 全屏看图
- sentry: ^3.0.1 # 异常上报
- device_info: ^1.0.0 # 设备信息
- # The following adds the Cupertino Icons font to your application.
- # Use with the CupertinoIcons class for iOS style icons.
- cupertino_icons: ^1.0.0
- dev_dependencies:
- flutter_test:
- sdk: flutter
- build_runner: ^1.0.0
- json_serializable: ^2.0.0
- flutter_native_splash: ^0.1.9 # 启动闪屏
- # For information on the generic Dart part of this file, see the
- # following page: https://dart.dev/tools/pub/pubspec
- # The following section is specific to Flutter.
- flutter:
- # The following line ensures that the Material Icons font is
- # included with your application, so that you can use the icons in
- # the material Icons class.
- uses-material-design: true
- assets:
- - assets/images/launcher.png
- - assets/images/wechat.png
- - assets/images/logo.png
- - assets/config/area.json
- - assets/area.json
- fonts:
- - family: IconFonts
- fonts:
- - asset: assets/fonts/iconfont.ttf
- - family: HuaWen
- fonts:
- - asset: assets/fonts/huawen2.ttf
- flutter_native_splash:
- image: assets/images/splash.png
- color: "ffffff"
- fill: true
|