Files
superport/lib/screens/equipment/widgets/custom_dropdown_field.dart
JiWoong Sul 49b203d366
Some checks failed
Flutter Test & Quality Check / Test on macos-latest (push) Has been cancelled
Flutter Test & Quality Check / Test on ubuntu-latest (push) Has been cancelled
Flutter Test & Quality Check / Build APK (push) Has been cancelled
feat(ui): full‑width ShadTable across app; fix rent dialog width; correct equipment pagination
- ShadTable: ensure full-width via LayoutBuilder+ConstrainedBox minWidth
- BaseListScreen: default data area padding = 0 for table edge-to-edge
- Vendor/Model/User/Company/Inventory/Zipcode: set columnSpanExtent per column
  and add final filler column to absorb remaining width; pin date/status/actions
  widths; ensure date text is single-line
- Equipment: unify card/border style; define fixed column widths + filler;
  increase checkbox column to 56px to avoid overflow
- Rent list: migrate to ShadTable.list with fixed widths + filler column
- Rent form dialog: prevent infinite width by bounding ShadProgress with
  SizedBox and remove Expanded from option rows; add safe selectedOptionBuilder
- Admin list: fix const with non-const argument in table column extents
- Services/Controller: remove hardcoded perPage=10; use BaseListController
  perPage; trust server meta (total/totalPages) in equipment pagination
- widgets/shad_table: ConstrainedBox(minWidth=viewport) so table stretches

Run: flutter analyze → 0 errors (warnings remain).
2025-09-09 22:38:08 +09:00

173 lines
5.4 KiB
Dart

import 'package:flutter/material.dart';
import 'package:superport/screens/common/theme_shadcn.dart';
/// 드롭다운 기능이 있는 재사용 가능한 TextFormField 위젯
class CustomDropdownField extends StatefulWidget {
final String label;
final String hint;
final bool required;
final TextEditingController controller;
final FocusNode focusNode;
final List<String> items;
final Function(String) onChanged;
final Function(String)? onFieldSubmitted;
final String? Function(String)? getAutocompleteSuggestion;
final VoidCallback onDropdownPressed;
final LayerLink layerLink;
final GlobalKey fieldKey;
const CustomDropdownField({
super.key,
required this.label,
required this.hint,
required this.required,
required this.controller,
required this.focusNode,
required this.items,
required this.onChanged,
this.onFieldSubmitted,
this.getAutocompleteSuggestion,
required this.onDropdownPressed,
required this.layerLink,
required this.fieldKey,
});
@override
State<CustomDropdownField> createState() => _CustomDropdownFieldState();
}
class _CustomDropdownFieldState extends State<CustomDropdownField> {
bool _isProgrammaticChange = false;
OverlayEntry? _overlayEntry;
@override
void dispose() {
_removeDropdown();
super.dispose();
}
void _showDropdown() {
_removeDropdown();
final RenderBox renderBox = widget.fieldKey.currentContext!.findRenderObject() as RenderBox;
final size = renderBox.size;
_overlayEntry = OverlayEntry(
builder: (context) => Positioned(
width: size.width,
child: CompositedTransformFollower(
link: widget.layerLink,
showWhenUnlinked: false,
offset: const Offset(0, 45),
child: Material(
elevation: 0,
borderRadius: BorderRadius.circular(4),
child: Container(
decoration: BoxDecoration(
color: ShadcnTheme.card,
border: Border.all(color: ShadcnTheme.border),
borderRadius: BorderRadius.circular(4),
boxShadow: ShadcnTheme.shadowSm,
),
constraints: const BoxConstraints(maxHeight: 200),
child: SingleChildScrollView(
child: Column(
mainAxisSize: MainAxisSize.min,
children: widget.items.map((item) {
return GestureDetector(
behavior: HitTestBehavior.opaque,
onTap: () {
setState(() {
_isProgrammaticChange = true;
widget.controller.text = item;
});
widget.onChanged(item);
WidgetsBinding.instance.addPostFrameCallback((_) {
_isProgrammaticChange = false;
});
_removeDropdown();
},
child: Container(
padding: const EdgeInsets.symmetric(
horizontal: 16,
vertical: 12,
),
width: double.infinity,
child: Text(item),
),
);
}).toList(),
),
),
),
),
),
),
);
Overlay.of(context).insert(_overlayEntry!);
}
void _removeDropdown() {
if (_overlayEntry != null) {
_overlayEntry!.remove();
_overlayEntry = null;
}
}
@override
Widget build(BuildContext context) {
return Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: [
CompositedTransformTarget(
link: widget.layerLink,
child: TextFormField(
key: widget.fieldKey,
controller: widget.controller,
focusNode: widget.focusNode,
decoration: InputDecoration(
labelText: widget.label,
hintText: widget.hint,
suffixIcon: IconButton(
icon: const Icon(Icons.arrow_drop_down),
onPressed: () {
widget.onDropdownPressed();
_showDropdown();
},
),
),
onChanged: (value) {
if (!_isProgrammaticChange) {
widget.onChanged(value);
}
},
onFieldSubmitted: widget.onFieldSubmitted,
),
),
// 자동완성 후보 표시
if (widget.getAutocompleteSuggestion != null)
Builder(
builder: (context) {
final suggestion = widget.getAutocompleteSuggestion!(widget.controller.text);
if (suggestion != null && suggestion.length > widget.controller.text.length) {
return Padding(
padding: const EdgeInsets.only(left: 12, top: 2),
child: Text(
suggestion,
style: const TextStyle(
color: Color(0xFF1976D2),
fontWeight: FontWeight.bold,
fontSize: 13,
),
),
);
}
return const SizedBox.shrink();
},
),
],
);
}
}