TF-1665 Enable app grid on mobile

(cherry picked from commit c9f9a2c214316606c8d3f9d63cf38c326369b112)
This commit is contained in:
dab246
2023-04-11 14:21:42 +07:00
committed by Dat Vu
parent 3f5fa41c75
commit 3eb1e20b5b
21 changed files with 383 additions and 308 deletions
@@ -21,7 +21,10 @@ class PrivacyLinkWidget extends StatelessWidget {
fontSize: 14),
recognizer: TapGestureRecognizer()..onTap = () async {
if (await canLaunchUrlString(privacyUrlString)) {
launchUrlString(privacyUrlString);
launchUrlString(
privacyUrlString,
mode: LaunchMode.externalApplication
);
}
}
)