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
|
2024-08-14 03:32:02 -04:00
|
|
|
static const String appName = 'Vaani';
|
2024-05-12 05:38:30 -04:00
|
|
|
|
2024-09-16 23:51:50 -04:00
|
|
|
// for deeplinking
|
|
|
|
|
static const String appScheme = 'vaani';
|
|
|
|
|
|
2024-10-03 05:54:29 -04:00
|
|
|
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
|
|
|
}
|