Forgot that bit with the new hamburger menu

This commit is contained in:
Yannick Mauray 2021-11-08 00:42:55 +01:00
parent 71c43b08b5
commit 08d849f20e
No known key found for this signature in database
GPG Key ID: 67C4AAC5E99CB909
1 changed files with 10 additions and 0 deletions

View File

@ -0,0 +1,10 @@
import 'package:package_info_plus/package_info_plus.dart';
mixin VersionMixin {
static PackageInfo? packageInfo;
String get appName => packageInfo?.appName ?? '';
String get packageName => packageInfo?.packageName ?? '';
String get version => packageInfo?.version ?? '';
String get buildNumber => packageInfo?.buildNumber ?? '';
}