feat: store original package name of patches apps.

This commit is contained in:
Aunali321
2022-10-10 18:45:58 +05:30
parent f2b03b6e69
commit 94397dcb4c
5 changed files with 23 additions and 0 deletions

View File

@ -260,6 +260,22 @@ class AppInfoView extends StatelessWidget {
subtitle: Text(app.packageName),
),
const SizedBox(height: 4),
ListTile(
contentPadding:
const EdgeInsets.symmetric(horizontal: 20.0),
title: I18nText(
'appInfoView.originalPackageNameLabel',
child: const Text(
'',
style: TextStyle(
fontSize: 20,
fontWeight: FontWeight.w500,
),
),
),
subtitle: Text(app.originalPackageName),
),
const SizedBox(height: 4),
ListTile(
contentPadding:
const EdgeInsets.symmetric(horizontal: 20.0),