A framework for building convergent cross-platform Nextcloud clients using Flutter.
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.
 
 

68 lines
1.7 KiB

/// IDs of the apps.
final class AppIDs {
/// ID for the comments app.
static const comments = 'comments';
/// ID for the core app.
static const core = 'core';
/// ID for the dashboard app.
static const dashboard = 'dashboard';
/// ID for the dav app.
static const dav = 'dav';
/// ID for the files app.
static const files = 'files';
/// ID for the files_external app.
static const filesExternal = 'files_external';
/// ID for the files_reminders app.
static const filesReminders = 'files_reminders';
/// ID for the files_sharing app.
static const filesSharing = 'files_sharing';
/// ID for the files_trashbin app.
static const filesTrashbin = 'files_trashbin';
/// ID for the files_versions app.
static const filesVersions = 'files_versions';
/// ID for the news app.
static const news = 'news';
/// ID for the notes app.
static const notes = 'notes';
/// ID for the notifications app.
static const notifications = 'notifications';
/// ID for the provisioning_api app.
static const provisioningApi = 'provisioning_api';
/// ID for the settings app.
static const settings = 'settings';
/// ID for the sharebymail app.
static const sharebymail = 'sharebymail';
/// ID for the spreed app.
static const spreed = 'spreed';
/// ID for the theming app.
static const theming = 'theming';
/// ID for the updatenotification app.
static const updatenotification = 'updatenotification';
/// ID for the uppush app.
static const uppush = 'uppush';
/// ID for the user_status app.
static const userStatus = 'user_status';
/// ID for the weather_status app.
static const weatherStatus = 'weather_status';
}