Vaani/lib/settings/constants.dart

20 lines
506 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';
static const version = '1.0.0';
static const author = 'Dr.Blank';
static Uri githubRepo = Uri.parse('https://github.com/Dr-Blank/Vaani');
2024-05-12 05:38:30 -04:00
static get appNameLowerCase => appName.toLowerCase().replaceAll(' ', '_');
2024-05-08 05:03:49 -04:00
}