mirror of
https://github.com/tommyxchow/frosty.git
synced 2025-05-18 15:06:24 +08:00

* Remove Sentry Flutter * Install and configure firebase * Install and configure firebase crashlytics * Install firebase performance monitoring * Install firebase analytics * Remove Sentry from github actions * Update iOS configs * Update setting toggle for firebase
27 lines
661 B
Dart
27 lines
661 B
Dart
/// Twitch API client ID.
|
|
const clientId = String.fromEnvironment('CLIENT_ID');
|
|
|
|
/// Twitch API client secret.
|
|
const secret = String.fromEnvironment('SECRET');
|
|
|
|
/// BTTV emotes with zero width to allow for overlaying other emotes.
|
|
const zeroWidthEmotes = [
|
|
'SoSnowy',
|
|
'IceCold',
|
|
'SantaHat',
|
|
'TopHat',
|
|
'ReinDeer',
|
|
'CandyCane',
|
|
'cvMask',
|
|
'cvHazmat',
|
|
];
|
|
|
|
/// Regex for matching strings that contain lower or upper case English characters.
|
|
final regexEnglish = RegExp(r'[a-zA-Z]');
|
|
|
|
/// The default badge width and height.
|
|
const defaultBadgeSize = 18.0;
|
|
|
|
/// The default emote width and height when none are provided.
|
|
const defaultEmoteSize = 28.0;
|