mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2025-06-29 02:03:10 -04:00
* feat: support workspace ops on mobile * chore: move the member bloc to workspace menu item widget * feat: support creating workspace on mobile * chore: add popToHome extension * fix: flutter analyze * feat: support renaming a workspace * feat: support deleting a workspace * feat: support leaving a workspace * feat: workspace icon ui revamp * feat: support updating workspace icon on mobile * feat: show a confirm dialog before deleting a workspace * fix: workspace name overflow * feat: support leaving a workspace * chore: update translations * feat: show a toast after renaming workspace * feat: update translations * feat: add workspace operation integration tests on mobile * test: add create workspace test on mobile
8 lines
282 B
Dart
8 lines
282 B
Dart
class Constants {
|
|
// this page name is default page name in the new workspace
|
|
static const gettingStartedPageName = 'Getting started';
|
|
static const toDosPageName = 'To-dos';
|
|
static const generalSpaceName = 'General';
|
|
|
|
static const defaultWorkspaceName = 'My Workspace';
|
|
}
|