12 lines
688 B
Dart
12 lines
688 B
Dart
class Urls {
|
|
static const linkdingInstallationInstructions =
|
|
"https://github.com/sissbruecker/linkding?tab=readme-ov-file#installation";
|
|
static const gitHubRepo = "https://github.com/JGeek00/linkdy";
|
|
static const playStoreLink = "https://play.google.com/store/apps/details?id=com.jgeek00.linkdy&pcampaignid=web_share";
|
|
static const linkdingRepo = "https://github.com/sissbruecker/linkding";
|
|
static String gstatic(url) =>
|
|
"https://t2.gstatic.com/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&url=$url&size=16";
|
|
static String appDetailsPage = "https://apps.jgeek00.com/8w0n3nmp891tp6q";
|
|
static String appsWebsite = "https://apps.jgeek00.com";
|
|
}
|