Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update Banner Text. #915

Merged
merged 1 commit into from
Sep 24, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion assets/locales/en.po
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
12 changes: 4 additions & 8 deletions lib/vpn/vpn_tab.dart
Original file line number Diff line number Diff line change
Expand Up @@ -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(
Expand All @@ -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(),
],
Expand Down