web_shell_flutter/apps/test/lib/main.dart

18 lines
529 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'),
bootstrapConfigAsset: 'assets/config/bootstrap.json',
),
);
}