Vaani/lib/settings/constants.dart

15 lines
360 B
Dart
Raw Normal View History

2024-05-08 05:03:49 -04:00
import 'package:flutter/foundation.dart' show immutable;
@immutable
class AppMetadata {
const AppMetadata._();
2024-06-16 22:24:32 -04:00
// TODO: use the packageinfo package to get the app name
static const String appName = 'Vaani';
2024-05-12 05:38:30 -04:00
// for deeplinking
static const String appScheme = 'vaani';
2024-05-12 05:38:30 -04:00
static get appNameLowerCase => appName.toLowerCase().replaceAll(' ', '_');
2024-05-08 05:03:49 -04:00
}