63 lines
2.3 KiB
Dart
63 lines
2.3 KiB
Dart
import 'dart:ui';
|
|
|
|
abstract class AppConfig {
|
|
// Const and final configuration values (immutable)
|
|
static const Color primaryColor = Color(0xFFD18616);
|
|
static const Color primaryColorLight = Color(0xFFCCBDEA);
|
|
static const Color secondaryColor = Color(0xff93774e);
|
|
|
|
static const Color chatColor = primaryColor;
|
|
static const double messageFontSize = 16.0;
|
|
static const bool allowOtherHomeservers = true;
|
|
static const bool enableRegistration = true;
|
|
static const bool hideTypingUsernames = false;
|
|
|
|
static const String inviteLinkPrefix = 'https://matrix.to/#/';
|
|
static const String deepLinkPrefix = 'space.hunni://chat/';
|
|
static const String schemePrefix = 'matrix:';
|
|
static const String pushNotificationsChannelId = 'hunnichat_push';
|
|
static const String pushNotificationsAppId = 'chat.smithtech.matrix';
|
|
static const double borderRadius = 18.0;
|
|
static const double columnWidth = 360.0;
|
|
|
|
static const String website = 'https://www.smithandtech.com';
|
|
static const String enablePushTutorial =
|
|
'https://fluffy.chat/faq/#push_without_google_services';
|
|
static const String encryptionTutorial =
|
|
'https://fluffy.chat/faq/#how_to_use_end_to_end_encryption';
|
|
static const String startChatTutorial =
|
|
'https://fluffy.chat/faq/#how_do_i_find_other_users';
|
|
static const String appId = 'chat.smithtech.matrix';
|
|
static const String appOpenUrlScheme = 'com.smithandtech';
|
|
|
|
static const String sourceCodeUrl =
|
|
'https://github.com/krille-chan/fluffychat';
|
|
static const String supportUrl =
|
|
'https://github.com/krille-chan/fluffychat/issues';
|
|
static const String changelogUrl = 'https://fluffy.chat/en/changelog/';
|
|
static const String donationUrl = 'https://ko-fi.com/krille';
|
|
|
|
static const Set<String> defaultReactions = {'👍', '❤️', '😂', '😮', '😢'};
|
|
|
|
static final Uri newIssueUrl = Uri(
|
|
scheme: 'https',
|
|
host: 'github.com',
|
|
path: '/krille-chan/fluffychat/issues/new',
|
|
);
|
|
|
|
static final Uri homeserverList = Uri(
|
|
scheme: 'https',
|
|
host: 'servers.joinmatrix.org',
|
|
path: 'servers.json',
|
|
);
|
|
|
|
static final Uri privacyUrl = Uri(
|
|
scheme: 'https',
|
|
host: 'smithandtech.com',
|
|
path: '/hunnichat-privacy',
|
|
);
|
|
|
|
static const String mainIsolatePortName = 'main_isolate';
|
|
static const String pushIsolatePortName = 'push_isolate';
|
|
}
|