cofounderella/lib/constants.dart

24 lines
863 B
Dart
Raw Normal View History

2024-05-05 10:26:49 +02:00
class Constants {
Constants._();
/// Title of the app
static const String appTitle = "Cofounderella";
2024-05-15 23:24:26 +02:00
static const String dbCollectionFeedbacks = 'feedbacks';
2024-05-05 10:26:49 +02:00
static const String dbCollectionUsers = 'Users';
static const String dbCollectionLanguages = 'languages';
2024-05-09 21:55:17 +02:00
static const String dbCollectionLocations = 'locations';
2024-05-05 10:26:49 +02:00
static const String dbCollectionChatRooms = 'chat_rooms';
static const String dbCollectionMessages = 'messages';
2024-05-06 15:21:21 +02:00
2024-05-10 21:25:25 +02:00
static const String dbDocMainLocation = 'main';
static const String dbDocSecondLocation = 'secondary';
2024-05-08 00:59:16 +02:00
static const String dbFieldUsersGender = 'gender';
static const String dbFieldUsersYearBorn = 'born';
2024-05-15 13:35:01 +02:00
static const String dbFieldUsersSkills = 'skills';
static const String dbFieldUsersSkillsSought = 'skills_sought';
2024-05-08 00:59:16 +02:00
2024-05-06 15:21:21 +02:00
static const String pathLanguagesJson = 'lib/assets/languages.json';
2024-05-05 10:26:49 +02:00
}