공개페이지 완료

This commit is contained in:
2025-11-10 14:14:08 +09:00
parent 2ce0b81483
commit ac43ddb55e
67 changed files with 3220 additions and 224696 deletions
@@ -383,7 +383,7 @@ class _EventDetailsScreenState extends State<EventDetailsScreen>
Expanded(
child: DropdownButtonFormField<String>(
key: const Key('event_details_guest_gender_dropdown'),
value: gender,
initialValue: gender,
decoration: const InputDecoration(
labelText: '성별',
border: OutlineInputBorder(),
@@ -469,7 +469,7 @@ class _EventDetailsScreenState extends State<EventDetailsScreen>
key: const Key(
'event_details_participant_status_dropdown',
),
value:
initialValue:
(participantStatusOptions.keys.contains(
participantStatus,
))
@@ -500,7 +500,7 @@ class _EventDetailsScreenState extends State<EventDetailsScreen>
Expanded(
child: DropdownButtonFormField<String>(
key: const Key('event_details_payment_status_dropdown'),
value:
initialValue:
(paymentStatusOptions.keys.contains(paymentStatus))
? paymentStatus
: null,
@@ -1421,7 +1421,7 @@ ${widget.event.accessPassword != null && widget.event.accessPassword!.isNotEmpty
else
DropdownButtonFormField<String>(
key: const Key('quick_add_member_dropdown'),
value: selectedMemberId,
initialValue: selectedMemberId,
isExpanded: true,
decoration: const InputDecoration(
labelText: '회원 선택',
@@ -1447,7 +1447,7 @@ ${widget.event.accessPassword != null && widget.event.accessPassword!.isNotEmpty
Expanded(
child: DropdownButtonFormField<String>(
key: const Key('quick_add_status_dropdown'),
value: status,
initialValue: status,
isExpanded: true,
decoration: const InputDecoration(
labelText: '상태',
@@ -1468,7 +1468,7 @@ ${widget.event.accessPassword != null && widget.event.accessPassword!.isNotEmpty
Expanded(
child: DropdownButtonFormField<String>(
key: const Key('quick_add_payment_dropdown'),
value: paymentStatus,
initialValue: paymentStatus,
isExpanded: true,
decoration: const InputDecoration(
labelText: '결제',
@@ -1578,7 +1578,7 @@ ${widget.event.accessPassword != null && widget.event.accessPassword!.isNotEmpty
mainAxisSize: MainAxisSize.min,
children: [
DropdownButtonFormField<String>(
value: status,
initialValue: status,
isExpanded: true,
decoration: const InputDecoration(labelText: '상태'),
items: participantStatusOptions.entries
@@ -1593,7 +1593,7 @@ ${widget.event.accessPassword != null && widget.event.accessPassword!.isNotEmpty
),
const SizedBox(height: 8),
DropdownButtonFormField<String>(
value: paymentStatus,
initialValue: paymentStatus,
isExpanded: true,
decoration: const InputDecoration(labelText: '결제'),
items: paymentStatusOptions.entries