- Implemented responsive dashboard UI with Material Design 3 - Integrated GetWidget 7.0.0 for modern UI components (GFAvatar, custom badges) - Created collapsible navigation sidebar with smooth animations - Built status cards grid with uniform badge sizing - Added activity timeline with recent events - Configured custom Svrnty branding (Crimson Red #F3574E, Slate Blue #5A6F7D) - Set up development server on http://localhost:54952/ - Included Montserrat and IBM Plex Mono custom fonts 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
10 lines
292 B
Bash
Executable File
10 lines
292 B
Bash
Executable File
#!/bin/bash
|
|
# Flutter development server launcher
|
|
# Always runs on http://localhost:54952/
|
|
|
|
echo "🚀 Starting Svrnty Console on http://localhost:54952/"
|
|
echo "Press 'r' for hot reload, 'R' for hot restart, 'q' to quit"
|
|
echo ""
|
|
|
|
flutter run -d chrome --web-port=54952 --web-hostname=0.0.0.0
|