Skip to content

Commit

Permalink
Reorder fields
Browse files Browse the repository at this point in the history
  • Loading branch information
fotiDim committed Jan 2, 2025
1 parent deb9212 commit 1df269b
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions example/lib/home/widgets/scan_filter_widget.dart
Original file line number Diff line number Diff line change
Expand Up @@ -115,19 +115,19 @@ class _ScanFilterWidgetState extends State<ScanFilterWidget> {
const Divider(),
const SizedBox(height: 10),
TextFormField(
controller: widget.servicesFilterController,
controller: widget.namePrefixController,
maxLines: 2,
decoration: const InputDecoration(
labelText: "Services",
labelText: "Name Prefixes",
border: OutlineInputBorder(),
),
),
const SizedBox(height: 10),
TextFormField(
controller: widget.namePrefixController,
controller: widget.servicesFilterController,
maxLines: 2,
decoration: const InputDecoration(
labelText: "Name Prefixes",
labelText: "Services",
border: OutlineInputBorder(),
),
),
Expand Down

0 comments on commit 1df269b

Please sign in to comment.