* made button same height when loading, added timeout to language settings / avatar page * fix: make button click always work, shrink inputs and add more space between logo and page content * fix: don't open keyboard automatically in signup/login pages * fix: make language dropdown hint text accurate * feat: if a user logs in with SSO, allow them to set their username in the account setup page
13 lines
699 B
Dart
13 lines
699 B
Dart
class PLocalKey {
|
|
static const String access = "access";
|
|
static const String cachedClassCodeToJoin = "cachedclasscodetojoin";
|
|
static const String beganWebPayment = "beganWebPayment";
|
|
static const String dismissedPaywall = 'dismissedPaywall';
|
|
static const String paywallBackoff = 'paywallBackoff';
|
|
static const String messagesSinceUpdate = 'messagesSinceLastUpdate';
|
|
static const String completedActivities = 'completedActivities';
|
|
static const String justInputtedCode = 'justInputtedCode';
|
|
static const String availableSubscriptionInfo = 'availableSubscriptionInfo';
|
|
static const String showedUpdateDialog = 'showedUpdateDialog';
|
|
static const String loginType = 'loginType';
|
|
}
|