18 lines
528 B
Dart
18 lines
528 B
Dart
import 'package:flutter/material.dart';
|
|
import 'package:web_shell_core/web_shell_core.dart';
|
|
|
|
void main() {
|
|
runShellApp(
|
|
ShellEnvironment(
|
|
appName: '云校嗨学',
|
|
appKey: 'yunxiao_prod',
|
|
accentColor: const Color(0xFF4F46E5),
|
|
backgroundColor: const Color(0xFFFFFFFF),
|
|
textColor: const Color(0xFF1F2937),
|
|
mutedTextColor: const Color(0xFF6B7280),
|
|
splashImage: const AssetImage('assets/branding/splash.png'),
|
|
bootstrapConfigAsset: 'assets/config/bootstrap.json',
|
|
),
|
|
);
|
|
}
|