Skip to content

Commit

Permalink
fix: 5627 - remove focus from price amount after adding product (open…
Browse files Browse the repository at this point in the history
  • Loading branch information
monsieurtanuki authored Oct 25, 2024
1 parent 4b8489d commit ccbe094
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions packages/smooth_app/lib/pages/prices/price_add_product_card.dart
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,17 @@ class _PriceAddProductCardState extends State<PriceAddProductCard> {

String? _latestScannedBarcode;

// we create dummy focus nodes to focus on, when we need to unfocus.
final List<FocusNode> _dummyFocusNodes = <FocusNode>[];

@override
void dispose() {
for (final FocusNode focusNode in _dummyFocusNodes) {
focusNode.dispose();
}
super.dispose();
}

@override
Widget build(BuildContext context) {
final AppLocalizations appLocalizations = AppLocalizations.of(context);
Expand Down Expand Up @@ -109,6 +120,13 @@ class _PriceAddProductCardState extends State<PriceAddProductCard> {
),
),
);

// unfocus from the previous price amount text field.
// looks like the most efficient way to unfocus: focus somewhere in space...
final FocusNode focusNode = FocusNode();
_dummyFocusNodes.add(focusNode);
FocusScope.of(context).requestFocus(focusNode);

priceModel.notifyListeners();
}

Expand Down

0 comments on commit ccbe094

Please sign in to comment.