Gate Flutter app behind Telegram
Some checks failed
Build and deploy Flutter Web / build (push) Failing after 3m19s

This commit is contained in:
Ruslan Bakiev
2026-05-08 17:41:53 +07:00
parent 383e4d2307
commit 5b7b5771a1
7 changed files with 110 additions and 13 deletions

View File

@@ -0,0 +1,2 @@
export 'telegram_launcher_stub.dart'
if (dart.library.js_interop) 'telegram_launcher_web.dart';

View File

@@ -0,0 +1 @@
void openTelegramUrl(String url) {}

View File

@@ -0,0 +1,8 @@
import 'dart:js_interop';
@JS('window.open')
external JSAny? _open(JSString url, JSString target, JSString features);
void openTelegramUrl(String url) {
_open(url.toJS, '_blank'.toJS, 'noopener,noreferrer'.toJS);
}