This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import 'package:flutter/material.dart'; | |
| import 'package:google_fonts/google_fonts.dart'; | |
| import 'package:package_info_plus/package_info_plus.dart'; | |
| import 'package:url_launcher/url_launcher.dart'; | |
| import '../../config/app_config.dart'; | |
| import '../../services/json_cache_service.dart'; | |
| // Design colors | |
| const _darkBg = Color(0xFF121212); | |
| const _cardBg = Color(0xFF1E1E1E); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // ============================================================================= | |
| // STANDALONE WIDGET - Can be shared via GitHub Gist | |
| // ============================================================================= | |
| // This file has NO dependencies on other project files. | |
| // Only uses Flutter SDK + common 3rd party packages. | |
| // | |
| // Required packages (add to pubspec.yaml): | |
| // - http: ^1.2.2 | |
| // - url_launcher: ^6.3.1 | |
| // - package_info_plus: ^8.1.2 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| # Build and collect APKs for Flutter apps | |
| # Usage: ./build-apks.sh | |
| set -e # Exit on error | |
| # Colors for output | |
| GREEN='\033[0;32m' | |
| BLUE='\033[0;34m' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| # Quick launcher for OpenClaw dashboard | |
| # Ensures all services are running, then opens dashboard | |
| # 1. Ensure Qdrant is running (needed for Mem0) | |
| if ! lsof -i :6333 &>/dev/null; then | |
| echo "Starting Qdrant..." | |
| launchctl bootout gui/$(id -u)/dev.qdrant 2>/dev/null | |
| launchctl bootstrap gui/$(id -u) ~/Library/LaunchAgents/dev.qdrant.plist 2>/dev/null | |
| sleep 2 |
OlderNewer