style: apply dart format across project

This commit is contained in:
JiWoong Sul
2025-09-07 19:33:11 +09:00
parent f812d4b9fd
commit d1a6cb9fe3
101 changed files with 3123 additions and 2574 deletions

View File

@@ -104,8 +104,6 @@ class FaviconCache {
// 구글 파비콘 API 서비스
class GoogleFaviconService {
// 구글 파비콘 API URL 생성
static String getFaviconUrl(String domain, int size) {
final directUrl =
@@ -137,7 +135,8 @@ class GoogleFaviconService {
static String getBase64PlaceholderIcon(String serviceName, Color color) {
// 간단한 SVG 생성 (서비스 이름의 첫 글자를 원 안에 표시)
final initial = serviceName.isNotEmpty ? serviceName[0].toUpperCase() : '?';
final colorHex = color.toARGB32().toRadixString(16).padLeft(8, '0').substring(2);
final colorHex =
color.toARGB32().toRadixString(16).padLeft(8, '0').substring(2);
// 공백 없이 SVG 생성 (공백이 있으면 Base64 디코딩 후 이미지 로드 시 문제 발생)
final svgContent =
@@ -568,7 +567,8 @@ class _WebsiteIconState extends State<WebsiteIcon>
boxShadow: widget.isHovered
? [
BoxShadow(
color: _getColorFromName().withValues(alpha: 0.3), // 약 0.3 알파값
color:
_getColorFromName().withValues(alpha: 0.3), // 약 0.3 알파값
blurRadius: 12,
spreadRadius: 0,
offset: const Offset(0, 4),