try to add linux webview support

This commit is contained in:
haorendashu
2025-02-08 19:05:31 +08:00
parent 725234ce98
commit beb20091ee
20 changed files with 689 additions and 40 deletions

View File

@@ -1,3 +1,5 @@
import 'package:nostr_sdk/utils/platform_util.dart';
class Base {
static const APP_NAME = "Nowser";
@@ -8,4 +10,6 @@ class Base {
static const double BASE_PADDING_HALF = 6;
static double BASE_FONT_SIZE = 15;
static String USER_AGENT = "${Base.APP_NAME} ${PlatformUtil.getPlatformName()} ${Base.VERSION_NAME}";
}