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

@@ -56,7 +56,7 @@ class DeleteConfirmationDialog extends StatelessWidget {
),
),
const SizedBox(height: 24),
// 타이틀
const Text(
'구독 삭제',
@@ -67,7 +67,7 @@ class DeleteConfirmationDialog extends StatelessWidget {
),
),
const SizedBox(height: 12),
// 설명
RichText(
textAlign: TextAlign.center,
@@ -91,7 +91,7 @@ class DeleteConfirmationDialog extends StatelessWidget {
),
),
const SizedBox(height: 8),
// 경고 메시지
Container(
padding: const EdgeInsets.symmetric(
@@ -127,7 +127,7 @@ class DeleteConfirmationDialog extends StatelessWidget {
),
),
const SizedBox(height: 32),
// 버튼들
Row(
children: [
@@ -176,7 +176,7 @@ class DeleteConfirmationDialog extends StatelessWidget {
serviceName: serviceName,
),
);
return result ?? false;
}
}
}