공개페이지 완료
This commit is contained in:
@@ -34,10 +34,12 @@ class _ParticipantsTabState extends State<ParticipantsTab> {
|
||||
|
||||
String _buildFilterSummary() {
|
||||
final parts = <String>[];
|
||||
if (_filterStatus != null && _filterStatus!.isNotEmpty)
|
||||
if (_filterStatus != null && _filterStatus!.isNotEmpty) {
|
||||
parts.add('상태: ${_filterStatus!}');
|
||||
if (_filterMemberType != null && _filterMemberType!.isNotEmpty)
|
||||
}
|
||||
if (_filterMemberType != null && _filterMemberType!.isNotEmpty) {
|
||||
parts.add('유형: ${_filterMemberType!}');
|
||||
}
|
||||
if (_filterPaid != null) parts.add('결제: ${_filterPaid! ? '완료' : '미결제'}');
|
||||
final q = _searchController.text.trim();
|
||||
if (q.isNotEmpty) parts.add("검색: '$q'");
|
||||
@@ -237,7 +239,7 @@ class _ParticipantsTabState extends State<ParticipantsTab> {
|
||||
final icon = isFemale ? Icons.female : Icons.male;
|
||||
final color = isFemale ? Colors.pink : Colors.blue;
|
||||
return CircleAvatar(
|
||||
backgroundColor: color.withValues(alpha: 0.1),
|
||||
backgroundColor: color.withOpacity(0.1),
|
||||
child: Icon(icon, size: 18, color: color),
|
||||
);
|
||||
},
|
||||
@@ -266,10 +268,10 @@ class _ParticipantsTabState extends State<ParticipantsTab> {
|
||||
vertical: 2,
|
||||
),
|
||||
decoration: BoxDecoration(
|
||||
color: Colors.deepPurple.withValues(alpha: 0.10),
|
||||
color: Colors.deepPurple.withOpacity(0.10),
|
||||
borderRadius: BorderRadius.circular(12),
|
||||
border: Border.all(
|
||||
color: Colors.deepPurple.withValues(alpha: 0.25),
|
||||
color: Colors.deepPurple.withOpacity(0.25),
|
||||
),
|
||||
),
|
||||
child: Text(
|
||||
@@ -290,10 +292,10 @@ class _ParticipantsTabState extends State<ParticipantsTab> {
|
||||
vertical: 2,
|
||||
),
|
||||
decoration: BoxDecoration(
|
||||
color: Colors.indigo.withValues(alpha: 0.10),
|
||||
color: Colors.indigo.withOpacity(0.10),
|
||||
borderRadius: BorderRadius.circular(12),
|
||||
border: Border.all(
|
||||
color: Colors.indigo.withValues(alpha: 0.25),
|
||||
color: Colors.indigo.withOpacity(0.25),
|
||||
),
|
||||
),
|
||||
child: Text(
|
||||
|
||||
Reference in New Issue
Block a user