feature: Improved about page (#75)

Co-authored-by: PartyDonut <PartyDonut@users.noreply.github.com>
This commit is contained in:
PartyDonut 2024-10-25 19:58:51 +02:00 committed by GitHub
parent 8dc18c8a3d
commit 62143581ac
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
8 changed files with 273 additions and 111 deletions

View file

@ -24,7 +24,9 @@ class ApplicationInfo with _$ApplicationInfo {
required String os,
}) = _ApplicationInfo;
String get versionAndPlatform => "$version ($os)\n#$buildNumber";
String get versionPlatformBuild => "$version ($os)\n#$buildNumber";
String get versionAndPlatform => "$version ($os)";
@override
String toString() => 'ApplicationInfo(name: $name, version: $version, os: $os)';