36 lines
1.3 KiB
Dart
36 lines
1.3 KiB
Dart
import 'package:rate_my_app/rate_my_app.dart';
|
|
|
|
class Constants {
|
|
static const String appDevPhase = 'Beta';
|
|
|
|
static const String kInstagramLink = 'https://instagram.felixkirchner.de';
|
|
static const String kGithubLink = 'https://github.felixkirchner.de';
|
|
static const String kGithubIssuesLink =
|
|
'https://cabo-counter-issues.felixkirchner.de';
|
|
static const String kGithubWikiLink =
|
|
'https://cabo-counter-wiki.felixkirchner.de';
|
|
static const String kEmail = 'cabocounter@felixkirchner.de';
|
|
static const String kPrivacyPolicyLink =
|
|
'https://cabo-counter-privacy.felixkirchner.de';
|
|
static const String kImprintLink = 'https://imprint.felixkirchner.de';
|
|
|
|
static RateMyApp rateMyApp = RateMyApp(
|
|
appStoreIdentifier: '6747105718',
|
|
minDays: 15,
|
|
remindDays: 45,
|
|
minLaunches: 15,
|
|
remindLaunches: 40);
|
|
|
|
/// Delay in milliseconds before a pop-up appears.
|
|
static const int kPopUpDelay = 300;
|
|
|
|
/// Delay in milliseconds before the round view appears after the previous one is closed.
|
|
static const int kRoundViewDelay = 600;
|
|
|
|
/// Duration in milliseconds for the fade-in animation of texts.
|
|
static const int kFadeInDuration = 300;
|
|
|
|
/// Duration in milliseconds for the keyboard to fully disappear.
|
|
static const int kKeyboardDelay = 300;
|
|
}
|