| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889 |
- 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: ^1.0.0 # 日志
- provider: ^5.0.0 # 状态管理
- bot_toast: ^4.0.1 # 弹窗
- flutter_swiper: ^1.1.6 # swipe
- json_annotation: ^2.0.0 # json
- shared_preferences: ^2.0.5 # 存储
- 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.2.0 # 解析 html
- uni_links: ^0.4.0 # url Scheme
- flutter_local_notifications: ^4.0.1+2 # 本地通知
- image_picker: ^0.6.7+12 # 上传图片
- alipay_kit: ^2.0.0 # alipay
- # wechat_kit: ^1.1.2 # wechat
- photo_view: ^0.11.1 # 全屏看图
- sentry: ^4.0.6 # 异常上报
- device_info: ^2.0.0 # 设备信息
- path_provider: ^2.0.1 # 缓存文件管理
- fluwx: ^3.4.2
- # 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
- json_model: ^0.0.2
- build_runner: ^1.0.0
- json_serializable: ^2.0.0
- flutter_native_splash: ^0.3.2 # 启动闪屏
- # 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/
- 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
|