web_shell_flutter/apps/test/lib/main.dart

18 lines
532 B
Dart

import 'package:flutter/material.dart';
import 'package:web_shell_core/web_shell_core.dart';
void main() {
runShellApp(
ShellEnvironment(
appName: '测试壳工程',
appKey: 'test_shell',
accentColor: const Color(0xFF10B981),
backgroundColor: const Color(0xFF1F2937),
textColor: const Color(0xFFFFFFFF),
mutedTextColor: const Color(0xFF9CA3AF),
splashImage: const AssetImage('assets/branding/splash.png'),
initialUrl: 'http://192.168.2.57:8080/test_bridge.html',
),
);
}