선생님 호출 화면을 실시간 출석 현황과 같은 패밀리룩으로 재디자인

제목을 AppBar 대신 본문 상단 알약(TitlePill)으로 옮기고, 필 모양
통계/선택 버튼과 그림자 있는 둥근 타일(원형 아이콘 배지 + 코너 배지)
스타일을 출석 화면에서 그대로 가져왔다.

Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
This commit is contained in:
2026-09-18 03:57:10 +00:00
co-authored by Claude Sonnet 5
parent 4cf759de62
commit 86a8f7b9d1
2 changed files with 319 additions and 124 deletions
+215 -86
View File
@@ -1,4 +1,5 @@
// 📍 선생님 호출 화면(학생용) (UI 전용). 선생님을 골라 방문 목적과 함께 호출한다. // 📍 선생님 호출 화면(학생용) (UI 전용). "실시간 출석 현황" 화면과 같은 패밀리룩
// (제목 알약 + 필 모양 통계/필터 + 그림자 있는 둥근 타일)을 따른다.
// 서버 통신/상태는 lib/function/teacher_call_controller.dart가 담당한다. // 서버 통신/상태는 lib/function/teacher_call_controller.dart가 담당한다.
import 'package:flutter/material.dart'; import 'package:flutter/material.dart';
import '../data/teacher_call_schedule.dart'; import '../data/teacher_call_schedule.dart';
@@ -75,32 +76,44 @@ class _TeacherCallScreenState extends State<TeacherCallScreen> {
return ListenableBuilder( return ListenableBuilder(
listenable: _controller, listenable: _controller,
builder: (context, _) { builder: (context, _) {
final teachers = _controller.teachers;
final inClassCount = teachers
.where((t) => _controller.isInClassNow(t['name'] ?? ''))
.length;
return Scaffold( return Scaffold(
backgroundColor: AppPalette.mist, backgroundColor: AppPalette.mist,
appBar: AppBar( appBar: AppBar(
backgroundColor: Colors.transparent, backgroundColor: Colors.transparent,
foregroundColor: AppPalette.ink, foregroundColor: AppPalette.ink,
elevation: 0, elevation: 0,
centerTitle: true,
title: const TitlePill('선생님 호출'),
), ),
body: _controller.isLoading body: _controller.isLoading
? const Center(child: CircularProgressIndicator()) ? const Center(child: CircularProgressIndicator())
: RefreshIndicator( : RefreshIndicator(
onRefresh: _controller.refresh, onRefresh: _controller.refresh,
child: ListView( child: ListView(
padding: const EdgeInsets.all(16), padding: const EdgeInsets.fromLTRB(16, 0, 16, 16),
children: [ children: [
if (_controller.ranking.isNotEmpty) _buildRanking(), const Center(child: TitlePill('선생님 호출')),
const SizedBox(height: 16), const SizedBox(height: 16),
const Text( Row(
'방문 목적', children: [
style: TextStyle(fontWeight: FontWeight.bold), Expanded(child: _statPill('전체 선생님', teachers.length)),
const SizedBox(width: 8),
Expanded(child: _statPill('지금 수업 중', inClassCount)),
],
), ),
const SizedBox(height: 8), if (_controller.ranking.isNotEmpty) ...[
const SizedBox(height: 12),
_buildRanking(),
],
const SizedBox(height: 20),
_sectionHeader('방문 목적'),
const SizedBox(height: 10),
_buildPurposeChips(), _buildPurposeChips(),
if (_useCustomPurpose) ...[ if (_useCustomPurpose) ...[
const SizedBox(height: 8), const SizedBox(height: 10),
TextField( TextField(
controller: _customPurposeController, controller: _customPurposeController,
maxLength: 40, maxLength: 40,
@@ -109,18 +122,15 @@ class _TeacherCallScreenState extends State<TeacherCallScreen> {
filled: true, filled: true,
fillColor: AppPalette.paper, fillColor: AppPalette.paper,
border: OutlineInputBorder( border: OutlineInputBorder(
borderRadius: BorderRadius.circular(12), borderRadius: BorderRadius.circular(16),
borderSide: BorderSide(color: AppPalette.sage), borderSide: BorderSide(color: AppPalette.sage),
), ),
), ),
), ),
], ],
const SizedBox(height: 16), const SizedBox(height: 20),
const Text( _sectionHeader('선생님 목록', count: teachers.length),
'선생님 선택', const SizedBox(height: 10),
style: TextStyle(fontWeight: FontWeight.bold),
),
const SizedBox(height: 8),
_buildTeacherGrid(), _buildTeacherGrid(),
const SizedBox(height: 20), const SizedBox(height: 20),
SizedBox( SizedBox(
@@ -133,7 +143,7 @@ class _TeacherCallScreenState extends State<TeacherCallScreen> {
foregroundColor: AppPalette.paper, foregroundColor: AppPalette.paper,
padding: const EdgeInsets.symmetric(vertical: 16), padding: const EdgeInsets.symmetric(vertical: 16),
shape: RoundedRectangleBorder( shape: RoundedRectangleBorder(
borderRadius: BorderRadius.circular(14), borderRadius: BorderRadius.circular(28),
), ),
), ),
onPressed: _controller.isCalling ? null : _call, onPressed: _controller.isCalling ? null : _call,
@@ -157,11 +167,11 @@ class _TeacherCallScreenState extends State<TeacherCallScreen> {
), ),
), ),
const SizedBox(height: 24), const SizedBox(height: 24),
const Text( _sectionHeader(
'내 호출 기록', '내 호출 기록',
style: TextStyle(fontWeight: FontWeight.bold), count: _controller.myCalls.length,
), ),
const SizedBox(height: 8), const SizedBox(height: 10),
_buildMyCalls(), _buildMyCalls(),
], ],
), ),
@@ -171,21 +181,89 @@ class _TeacherCallScreenState extends State<TeacherCallScreen> {
); );
} }
/// 🪶 "실시간 출석 현황"의 _sidebarStatPill과 같은 필 모양 통계 표시(선택 불가, 숫자 강조용).
Widget _statPill(String label, int count) {
return Container(
padding: const EdgeInsets.symmetric(vertical: 14, horizontal: 16),
decoration: BoxDecoration(
color: AppPalette.paper,
borderRadius: BorderRadius.circular(28),
border: Border.all(color: AppPalette.sage),
),
child: Column(
children: [
Text(label, style: TextStyle(fontSize: 12, color: Colors.grey[600])),
const SizedBox(height: 4),
Text(
'$count명',
style: const TextStyle(
fontSize: 18,
fontWeight: FontWeight.bold,
color: AppPalette.ink,
),
),
],
),
);
}
/// 🏷️ "학년 그룹" 헤더처럼 작은 강조 바 + 굵은 제목 + (선택) 개수를 붙인 섹션 제목.
Widget _sectionHeader(String title, {int? count}) {
return Row(
children: [
Container(
width: 4,
height: 16,
decoration: BoxDecoration(
color: AppPalette.ink,
borderRadius: BorderRadius.circular(2),
),
),
const SizedBox(width: 8),
Text(
title,
style: const TextStyle(
fontSize: 16,
fontWeight: FontWeight.bold,
color: AppPalette.ink,
),
),
if (count != null) ...[
const SizedBox(width: 6),
Text(
'$count명',
style: TextStyle(fontSize: 13, color: Colors.grey[500]),
),
],
],
);
}
Widget _buildRanking() { Widget _buildRanking() {
final medals = ['🥇', '🥈', '🥉']; final medals = ['🥇', '🥈', '🥉'];
return Container( return Container(
padding: const EdgeInsets.all(14), padding: const EdgeInsets.all(14),
decoration: BoxDecoration( decoration: BoxDecoration(
color: AppPalette.paper, color: AppPalette.paper,
borderRadius: BorderRadius.circular(16), borderRadius: BorderRadius.circular(20),
border: Border.all(color: AppPalette.sage), border: Border.all(color: AppPalette.sage),
boxShadow: [
BoxShadow(
color: Colors.black.withValues(alpha: 0.03),
blurRadius: 12,
offset: const Offset(0, 4),
),
],
), ),
child: Column( child: Column(
crossAxisAlignment: CrossAxisAlignment.start, crossAxisAlignment: CrossAxisAlignment.start,
children: [ children: [
const Text( Text(
'오늘 인기 선생님', '오늘 인기 선생님',
style: TextStyle(fontWeight: FontWeight.bold, color: Colors.grey), style: TextStyle(
fontWeight: FontWeight.bold,
color: Colors.grey[600],
),
), ),
const SizedBox(height: 8), const SizedBox(height: 8),
Row( Row(
@@ -201,7 +279,7 @@ class _TeacherCallScreenState extends State<TeacherCallScreen> {
), ),
Text( Text(
'${_controller.ranking[i]['count']}회', '${_controller.ranking[i]['count']}회',
style: const TextStyle(color: Colors.grey, fontSize: 12), style: TextStyle(color: Colors.grey[500], fontSize: 12),
), ),
], ],
), ),
@@ -212,109 +290,159 @@ class _TeacherCallScreenState extends State<TeacherCallScreen> {
); );
} }
/// 🍬 필 모양 선택 버튼(스탯 필과 같은 톤: 선택=ink 배경, 미선택=paper+sage 테두리).
Widget _pillChoice(String label, bool selected, VoidCallback onTap) {
return InkWell(
onTap: onTap,
borderRadius: BorderRadius.circular(28),
child: Container(
padding: const EdgeInsets.symmetric(vertical: 10, horizontal: 16),
decoration: BoxDecoration(
color: selected ? AppPalette.ink : AppPalette.paper,
borderRadius: BorderRadius.circular(28),
border: Border.all(
color: selected ? AppPalette.ink : AppPalette.sage,
),
),
child: Text(
label,
style: TextStyle(
fontWeight: FontWeight.bold,
color: selected ? Colors.white : AppPalette.ink,
),
),
),
);
}
Widget _buildPurposeChips() { Widget _buildPurposeChips() {
return Wrap( return Wrap(
spacing: 8, spacing: 8,
runSpacing: 8, runSpacing: 8,
children: [ children: [
for (final p in kCallPurposes) for (final p in kCallPurposes)
ChoiceChip( _pillChoice(
label: Text(p), p,
selected: !_useCustomPurpose && _selectedPurpose == p, !_useCustomPurpose && _selectedPurpose == p,
onSelected: (_) => setState(() { () => setState(() {
_useCustomPurpose = false; _useCustomPurpose = false;
_selectedPurpose = p; _selectedPurpose = p;
}), }),
selectedColor: AppPalette.ink,
labelStyle: TextStyle(
color: !_useCustomPurpose && _selectedPurpose == p
? Colors.white
: AppPalette.ink,
),
),
ChoiceChip(
label: const Text('직접 입력'),
selected: _useCustomPurpose,
onSelected: (_) => setState(() => _useCustomPurpose = true),
selectedColor: AppPalette.ink,
labelStyle: TextStyle(
color: _useCustomPurpose ? Colors.white : AppPalette.ink,
), ),
_pillChoice(
'직접 입력',
_useCustomPurpose,
() => setState(() => _useCustomPurpose = true),
), ),
], ],
); );
} }
Widget _buildTeacherGrid() { Widget _buildTeacherGrid() {
final teachers = _controller.teachers;
return GridView.builder( return GridView.builder(
shrinkWrap: true, shrinkWrap: true,
physics: const NeverScrollableScrollPhysics(), physics: const NeverScrollableScrollPhysics(),
gridDelegate: const SliverGridDelegateWithFixedCrossAxisCount( gridDelegate: const SliverGridDelegateWithMaxCrossAxisExtent(
crossAxisCount: 3, maxCrossAxisExtent: 160,
childAspectRatio: 1, mainAxisSpacing: 12,
crossAxisSpacing: 10, crossAxisSpacing: 12,
mainAxisSpacing: 10, mainAxisExtent: 110,
), ),
itemCount: _controller.teachers.length, itemCount: teachers.length,
itemBuilder: (context, index) { itemBuilder: (context, index) {
final t = _controller.teachers[index]; final t = teachers[index];
final name = t['name'] ?? ''; final name = t['name'] ?? '';
final location = t['location'] ?? '교무실'; final location = t['location'] ?? '교무실';
final isSelected = _selectedTeacherId == t['teacherId']; final isSelected = _selectedTeacherId == t['teacherId'];
final inClass = _controller.isInClassNow(name); final inClass = _controller.isInClassNow(name);
final statusColor = inClass ? Colors.orange : AppPalette.ink;
return GestureDetector( return GestureDetector(
onTap: () => setState(() { onTap: () => setState(() {
_selectedTeacherId = t['teacherId']; _selectedTeacherId = t['teacherId'];
_selectedTeacherName = name; _selectedTeacherName = name;
}), }),
child: Container( child: Container(
padding: const EdgeInsets.all(12),
decoration: BoxDecoration( decoration: BoxDecoration(
color: isSelected ? const Color(0xFFEFF6FF) : AppPalette.paper, color: isSelected ? AppPalette.ink : AppPalette.paper,
borderRadius: BorderRadius.circular(12), borderRadius: BorderRadius.circular(20),
border: Border.all( border: Border.all(
color: isSelected ? AppPalette.ink : AppPalette.sage, color: isSelected ? AppPalette.ink : AppPalette.sage,
width: isSelected ? 2 : 1,
), ),
boxShadow: [
BoxShadow(
color: Colors.black.withValues(alpha: 0.03),
blurRadius: 12,
offset: const Offset(0, 4),
),
],
), ),
child: Stack(
children: [
Center(
child: Column( child: Column(
mainAxisSize: MainAxisSize.min, crossAxisAlignment: CrossAxisAlignment.start,
children: [ children: [
Text( Row(
name, children: [
style: const TextStyle(fontWeight: FontWeight.bold), Container(
padding: const EdgeInsets.all(6),
decoration: BoxDecoration(
color: isSelected
? Colors.white.withValues(alpha: 0.15)
: statusColor.withValues(alpha: 0.1),
shape: BoxShape.circle,
),
child: Icon(
inClass ? Icons.school_rounded : Icons.person_rounded,
color: isSelected ? Colors.white : statusColor,
size: 16,
),
),
const Spacer(),
if (inClass)
Container(
padding: const EdgeInsets.symmetric(
horizontal: 6,
vertical: 2,
),
decoration: BoxDecoration(
color: isSelected
? Colors.white.withValues(alpha: 0.15)
: Colors.orange[50],
borderRadius: BorderRadius.circular(20),
border: Border.all(
color: isSelected ? Colors.white54 : Colors.orange,
),
),
child: Text(
'수업중',
style: TextStyle(
fontSize: 9,
color: isSelected ? Colors.white : Colors.orange,
), ),
const SizedBox(height: 4),
Text(
'${kLocationIcons[location] ?? '📍'} $location',
style: const TextStyle(
fontSize: 11,
color: Colors.grey,
), ),
), ),
], ],
), ),
const Spacer(),
Text(
name,
maxLines: 1,
overflow: TextOverflow.ellipsis,
style: TextStyle(
fontWeight: FontWeight.bold,
fontSize: 15,
color: isSelected ? Colors.white : AppPalette.ink,
), ),
if (inClass)
Positioned(
top: 4,
right: 4,
child: Container(
padding: const EdgeInsets.symmetric(
horizontal: 4,
vertical: 1,
),
decoration: BoxDecoration(
color: Colors.orange[100],
borderRadius: BorderRadius.circular(4),
border: Border.all(color: Colors.orange),
),
child: const Text(
'수업중',
style: TextStyle(fontSize: 9, color: Colors.orange),
), ),
const SizedBox(height: 2),
Text(
'${kLocationIcons[location] ?? '📍'} $location',
maxLines: 1,
overflow: TextOverflow.ellipsis,
style: TextStyle(
fontSize: 11,
color: isSelected ? Colors.white70 : Colors.grey[500],
), ),
), ),
], ],
@@ -337,10 +465,11 @@ class _TeacherCallScreenState extends State<TeacherCallScreen> {
for (final c in _controller.myCalls) for (final c in _controller.myCalls)
Container( Container(
margin: const EdgeInsets.only(bottom: 8), margin: const EdgeInsets.only(bottom: 8),
padding: const EdgeInsets.symmetric(horizontal: 14, vertical: 10), padding: const EdgeInsets.symmetric(horizontal: 16, vertical: 12),
decoration: BoxDecoration( decoration: BoxDecoration(
color: AppPalette.paper, color: AppPalette.paper,
borderRadius: BorderRadius.circular(12), borderRadius: BorderRadius.circular(16),
border: Border.all(color: AppPalette.sage),
), ),
child: Row( child: Row(
children: [ children: [
@@ -349,7 +478,7 @@ class _TeacherCallScreenState extends State<TeacherCallScreen> {
), ),
Text( Text(
'${c['createdAt'] ?? ''}'.split(' ').last, '${c['createdAt'] ?? ''}'.split(' ').last,
style: const TextStyle(color: Colors.grey, fontSize: 12), style: TextStyle(color: Colors.grey[500], fontSize: 12),
), ),
], ],
), ),
+98 -32
View File
@@ -1,4 +1,5 @@
// 📍 선생님 위치 등록 화면(교사용) (UI 전용). 본인 위치를 바꾸고, 받은 호출을 확인한다. // 📍 선생님 위치 등록 화면(교사용) (UI 전용). "실시간 출석 현황" 화면과 같은 패밀리룩
// (제목 알약 + 필 모양 통계 + 그림자 있는 둥근 타일)을 따른다.
// 서버 통신/상태는 lib/function/teacher_location_controller.dart가 담당한다. // 서버 통신/상태는 lib/function/teacher_location_controller.dart가 담당한다.
import 'package:flutter/material.dart'; import 'package:flutter/material.dart';
import '../data/teacher_call_schedule.dart'; import '../data/teacher_call_schedule.dart';
@@ -42,6 +43,37 @@ class _TeacherLocationScreenState extends State<TeacherLocationScreen> {
); );
} }
Widget _sectionHeader(String title, {int? count}) {
return Row(
children: [
Container(
width: 4,
height: 16,
decoration: BoxDecoration(
color: AppPalette.ink,
borderRadius: BorderRadius.circular(2),
),
),
const SizedBox(width: 8),
Text(
title,
style: const TextStyle(
fontSize: 16,
fontWeight: FontWeight.bold,
color: AppPalette.ink,
),
),
if (count != null) ...[
const SizedBox(width: 6),
Text(
'$count건',
style: TextStyle(fontSize: 13, color: Colors.grey[500]),
),
],
],
);
}
@override @override
Widget build(BuildContext context) { Widget build(BuildContext context) {
return ListenableBuilder( return ListenableBuilder(
@@ -53,54 +85,56 @@ class _TeacherLocationScreenState extends State<TeacherLocationScreen> {
backgroundColor: Colors.transparent, backgroundColor: Colors.transparent,
foregroundColor: AppPalette.ink, foregroundColor: AppPalette.ink,
elevation: 0, elevation: 0,
centerTitle: true,
title: const TitlePill('내 위치 알리기'),
), ),
body: _controller.isLoading body: _controller.isLoading
? const Center(child: CircularProgressIndicator()) ? const Center(child: CircularProgressIndicator())
: RefreshIndicator( : RefreshIndicator(
onRefresh: _controller.fetchReceivedCalls, onRefresh: _controller.fetchReceivedCalls,
child: ListView( child: ListView(
padding: const EdgeInsets.all(16), padding: const EdgeInsets.fromLTRB(16, 0, 16, 16),
children: [ children: [
const Center(child: TitlePill('내 위치 알리기')),
const SizedBox(height: 16),
Container( Container(
padding: const EdgeInsets.all(14), width: double.infinity,
padding: const EdgeInsets.symmetric(vertical: 18),
decoration: BoxDecoration( decoration: BoxDecoration(
color: const Color(0xFFEFF6FF), color: AppPalette.ink,
borderRadius: BorderRadius.circular(14), borderRadius: BorderRadius.circular(24),
), ),
child: Row( child: Column(
children: [ children: [
const Text( const Text(
'현재 위치', '현재 위치',
style: TextStyle(fontWeight: FontWeight.bold), style: TextStyle(
color: Colors.white70,
fontSize: 12,
), ),
const Spacer(), ),
const SizedBox(height: 6),
Text( Text(
'${kLocationIcons[_controller.currentLocation] ?? '📍'} ${_controller.currentLocation}', '${kLocationIcons[_controller.currentLocation] ?? '📍'} ${_controller.currentLocation}',
style: const TextStyle( style: const TextStyle(
fontWeight: FontWeight.bold, fontWeight: FontWeight.bold,
color: AppPalette.ink, fontSize: 20,
color: Colors.white,
), ),
), ),
], ],
), ),
), ),
const SizedBox(height: 20), const SizedBox(height: 20),
const Text( _sectionHeader('위치 선택'),
'위치 선택', const SizedBox(height: 10),
style: TextStyle(fontWeight: FontWeight.bold),
),
const SizedBox(height: 8),
GridView.builder( GridView.builder(
shrinkWrap: true, shrinkWrap: true,
physics: const NeverScrollableScrollPhysics(), physics: const NeverScrollableScrollPhysics(),
gridDelegate: gridDelegate:
const SliverGridDelegateWithFixedCrossAxisCount( const SliverGridDelegateWithMaxCrossAxisExtent(
crossAxisCount: 3, maxCrossAxisExtent: 160,
childAspectRatio: 1.3, mainAxisSpacing: 12,
crossAxisSpacing: 10, crossAxisSpacing: 12,
mainAxisSpacing: 10, mainAxisExtent: 90,
), ),
itemCount: kLocationOptions.length, itemCount: kLocationOptions.length,
itemBuilder: (context, index) { itemBuilder: (context, index) {
@@ -115,22 +149,40 @@ class _TeacherLocationScreenState extends State<TeacherLocationScreen> {
color: isSelected color: isSelected
? AppPalette.ink ? AppPalette.ink
: AppPalette.paper, : AppPalette.paper,
borderRadius: BorderRadius.circular(12), borderRadius: BorderRadius.circular(20),
border: Border.all( border: Border.all(
color: isSelected color: isSelected
? AppPalette.ink ? AppPalette.ink
: AppPalette.sage, : AppPalette.sage,
), ),
boxShadow: [
BoxShadow(
color: Colors.black.withValues(alpha: 0.03),
blurRadius: 12,
offset: const Offset(0, 4),
),
],
), ),
child: Center( child: Center(
child: Column( child: Column(
mainAxisSize: MainAxisSize.min, mainAxisSize: MainAxisSize.min,
children: [ children: [
Text( Container(
kLocationIcons[loc] ?? '📍', padding: const EdgeInsets.all(6),
style: const TextStyle(fontSize: 20), decoration: BoxDecoration(
color: isSelected
? Colors.white.withValues(
alpha: 0.15,
)
: AppPalette.linen,
shape: BoxShape.circle,
), ),
const SizedBox(height: 4), child: Text(
kLocationIcons[loc] ?? '📍',
style: const TextStyle(fontSize: 16),
),
),
const SizedBox(height: 6),
Text( Text(
loc, loc,
style: TextStyle( style: TextStyle(
@@ -149,11 +201,11 @@ class _TeacherLocationScreenState extends State<TeacherLocationScreen> {
}, },
), ),
const SizedBox(height: 24), const SizedBox(height: 24),
const Text( _sectionHeader(
'나를 찾은 학생 기록', '나를 찾은 학생 기록',
style: TextStyle(fontWeight: FontWeight.bold), count: _controller.receivedCalls.length,
), ),
const SizedBox(height: 8), const SizedBox(height: 10),
_buildReceivedCalls(), _buildReceivedCalls(),
], ],
), ),
@@ -175,19 +227,33 @@ class _TeacherLocationScreenState extends State<TeacherLocationScreen> {
for (final c in _controller.receivedCalls) for (final c in _controller.receivedCalls)
Container( Container(
margin: const EdgeInsets.only(bottom: 8), margin: const EdgeInsets.only(bottom: 8),
padding: const EdgeInsets.symmetric(horizontal: 14, vertical: 10), padding: const EdgeInsets.symmetric(horizontal: 16, vertical: 12),
decoration: BoxDecoration( decoration: BoxDecoration(
color: AppPalette.paper, color: AppPalette.paper,
borderRadius: BorderRadius.circular(12), borderRadius: BorderRadius.circular(16),
border: Border.all(color: AppPalette.sage),
), ),
child: Row( child: Row(
children: [ children: [
Container(
padding: const EdgeInsets.all(6),
decoration: BoxDecoration(
color: AppPalette.ink.withValues(alpha: 0.06),
shape: BoxShape.circle,
),
child: const Icon(
Icons.notifications_active_rounded,
size: 16,
color: AppPalette.ink,
),
),
const SizedBox(width: 10),
Expanded( Expanded(
child: Text('${c['studentName']} 학생 · ${c['purpose']}'), child: Text('${c['studentName']} 학생 · ${c['purpose']}'),
), ),
Text( Text(
'${c['createdAt'] ?? ''}', '${c['createdAt'] ?? ''}',
style: const TextStyle(color: Colors.grey, fontSize: 11), style: TextStyle(color: Colors.grey[500], fontSize: 11),
), ),
], ],
), ),