这是基于vue-vben-admin 模板适用于abp Vnext的前端管理项目
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
colin 8219366a3f feat(notifications): notify the configuration of local storage 2 years ago
..
android feat(flutter): implement notification service 2 years ago
ios feat(flutter): add flutter project 2 years ago
lib feat(notifications): notify the configuration of local storage 2 years ago
linux feat(flutter): add flutter project 2 years ago
macos feat(flutter): add flutter project 2 years ago
res feat(notifications): notify the configuration of local storage 2 years ago
test feat(flutter): add flutter project 2 years ago
web feat(flutter): add flutter project 2 years ago
windows feat(flutter): add flutter project 2 years ago
.gitignore feat(flutter): add flutter project 2 years ago
.metadata feat(flutter): add flutter project 2 years ago
README.md feat(notifications): notify the configuration of local storage 2 years ago
analysis_options.yaml feat(flutter): add flutter project 2 years ago
pubspec.lock feat(flutter): implement notification service 2 years ago
pubspec.yaml feat(flutter): implement notification service 2 years ago
translation.json feat(flutter): add flutter project 2 years ago
translation.zh-Hansjson feat(flutter): add flutter project 2 years ago

README.md

dev_app

A new Flutter project.

Getting Started

This project is a starting point for a Flutter application.

A few resources to get you started if this is your first Flutter project:

For help getting started with Flutter development, view the online documentation, which offers tutorials, samples, guidance on mobile development, and a full API reference.

Environment

  • baseUrl: 服务器连接地址(必输)
  • clientId: 客户端标识(必输)
  • clientSecret: 客户端密钥(可选)
  • authority: 身份认证服务器地址(必输)
  • uploadFilesUrl: 上传文件路径(可选)
  • staticFilesUrl: 静态文件路径(可选)
  • tenantKey: 多租户标识(可选)
  • defaultLanguage: 应用程序默认语言, 优先级低于用户配置(可选)
  • notifications: 通知相关设置(可选)
  • android: android端通知设置(可选)
  • channelId: 通道标识(配置了android节点后为必输)
  • channelName: 通道名称(配置了android节点后为必输)
  • channelDescription: 通道说明(可选)
  • linux: linux端通知设置(可选)
  • defaultActionName: 默认点击方法名称(配置了linux节点后为必输)
  • darwin: iOS/Mac os端通知设置(可选)
{
    "baseUrl": "http://127.0.0.1:30000",
    "clientId": "abp-flutter",
    "clientSecret": "1q2w3e*",
    "authority": "http://127.0.0.1:30000",
    "uploadFilesUrl": "",
    "staticFilesUrl": "",
    "tenantKey": "__tenant",
    "defaultLanguage": "en",
    "notifications": {
        "android": {
            "channelId": "abp-flutter",
            "channelName": "abp-flutter",
            "channelDescription": "适用于Android端的通知通道定义"
        },
        "linux": {
            "defaultActionName": "Open notification"
        }
    }
}