Skip to content

Commit

Permalink
Merge pull request #145 from atsign-foundation/slow-network
Browse files Browse the repository at this point in the history
fixed buttons on desktop
  • Loading branch information
sachins-geekyants authored Jun 28, 2022
2 parents 49b565b + 8c5dcec commit ea1c54d
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -623,13 +623,14 @@ class SideBarIcon extends StatelessWidget {
}

Future<void> _launchInBrowser(String url) async {
if (await canLaunchUrl(Uri(path: url))) {
try {
await launchUrl(
Uri(path: url),
// forceSafariVC: false,
// forceWebView: false,
Uri(
scheme: 'https',
path: url,
),
);
} else {
} catch (e) {
throw 'Could not launch $url';
}
}
Expand Down
4 changes: 2 additions & 2 deletions lib/utils/constants.dart
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,13 @@ class MixedConstants {

static const int ROOT_PORT = 64;

static const String TERMS_CONDITIONS = 'https://atsign.com/terms-conditions/';
static const String TERMS_CONDITIONS = 'atsign.com/terms-conditions/';

static const String FILEBIN_URL = 'https://ck6agzxiog6kmb.atsign.com/';
// static const String PRIVACY_POLICY = 'https://atsign.com/privacy-policy/';
static const String PRIVACY_POLICY =
"https://atsign.com/apps/atmosphere/atmosphere-privacy/";
static const String FAQ = "https://atsign.com/faqs/";
static const String FAQ = "atsign.com/faqs/";

static const MACOS_STORE_LINK = 'https://apps.apple.com/app/id1550936444';

Expand Down

0 comments on commit ea1c54d

Please sign in to comment.