UI 문구 이모티콘 제거 + 계정 강제 삭제 아이콘 검정으로 통일
화면 타이틀, 스낵바/다이얼로그 메시지, 백그라운드 알림 문구 등 사용자에게 노출되는 텍스트에서 이모티콘을 전부 제거 (코드 주석은 대상 아님). 아이콘 위젯은 그대로 유지. main_dashboard.dart의 "계정 강제 삭제" 타일 아이콘 색상도 빨간색 대신 다른 타일과 동일한 검정(AppPalette.ink)으로 통일. Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
This commit is contained in:
@@ -18,13 +18,13 @@ class StudentDashboardController extends ChangeNotifier {
|
||||
final response = await http.delete(url);
|
||||
if (response.statusCode == 200) {
|
||||
final responseData = jsonDecode(response.body);
|
||||
return (true, '✅ ${responseData['message']}');
|
||||
return (true, '${responseData['message']}');
|
||||
} else {
|
||||
final errorData = jsonDecode(response.body);
|
||||
return (false, '❌ 삭제 실패: ${errorData['detail'] ?? '알 수 없는 오류'}');
|
||||
return (false, '삭제 실패: ${errorData['detail'] ?? '알 수 없는 오류'}');
|
||||
}
|
||||
} catch (e) {
|
||||
return (false, '❌ 서버와 연결할 수 없습니다. (네트워크 에러)');
|
||||
return (false, '서버와 연결할 수 없습니다. (네트워크 에러)');
|
||||
} finally {
|
||||
_isLoading = false;
|
||||
notifyListeners();
|
||||
|
||||
Reference in New Issue
Block a user