Files
stream-chat-flutter/example/lib/routes/routes.dart
T
2020-11-27 19:03:48 +05:30

11 lines
436 B
Dart

/// Define all the route names here
class Routes {
static const String HOME = '/home';
static const String CHOOSE_USER = '/choose_user';
static const String ADVANCED_OPTIONS = '/advance_options';
static const String CHANNEL_PAGE = '/channel_page';
static const String NEW_CHAT = '/new_chat';
static const String NEW_GROUP_CHAT = '/new_group_chat';
static const String NEW_GROUP_CHAT_DETAILS = '/new_group_chat_details';
}