From 573cc86f60e1aa3d9be1a22f44707f3486286a95 Mon Sep 17 00:00:00 2001 From: Jigar-f Date: Tue, 19 Sep 2023 14:51:31 +0530 Subject: [PATCH] Update Banner Text. --- assets/locales/en.po | 2 +- lib/vpn/vpn_tab.dart | 12 ++++-------- 2 files changed, 5 insertions(+), 9 deletions(-) diff --git a/assets/locales/en.po b/assets/locales/en.po index 12a54fc97..10cda3ce3 100644 --- a/assets/locales/en.po +++ b/assets/locales/en.po @@ -57,7 +57,7 @@ msgid "Go Pro Title" msgstr "Go Pro!" msgid "Go Pro Description" -msgstr "Unlock faster speeds, and unlimited data!" +msgstr "Unlock faster speeds, ad-free experience, and unlimited data!" msgid "Server Location" msgstr "Server Location" diff --git a/lib/vpn/vpn_tab.dart b/lib/vpn/vpn_tab.dart index b9a874a11..e0ed8f08c 100644 --- a/lib/vpn/vpn_tab.dart +++ b/lib/vpn/vpn_tab.dart @@ -24,8 +24,8 @@ class VPNTab extends StatelessWidget { body: Column( mainAxisAlignment: MainAxisAlignment.spaceBetween, children: [ - proUser ? Container() : ProBanner(), - VPNSwitch(), + proUser ? const SizedBox() : ProBanner(), + const VPNSwitch(), Container( padding: const EdgeInsetsDirectional.all(16), decoration: BoxDecoration( @@ -40,13 +40,9 @@ class VPNTab extends StatelessWidget { child: Column( children: [ VPNStatus(), - Container( - child: const CDivider(height: 32.0), - ), + const CDivider(height: 32.0), ServerLocationWidget(), - Container( - child: const CDivider(height: 32.0), - ), + const CDivider(height: 32.0), SplitTunnelingWidget(), VPNBandwidth(), ],