-
-
Notifications
You must be signed in to change notification settings - Fork 280
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: Scanner buttons not updated (#1140)
* fix: Scanner buttons not updated * Refactor: Own file for ScanHeader
- Loading branch information
Showing
5 changed files
with
69 additions
and
56 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,62 @@ | ||
import 'package:flutter/material.dart'; | ||
import 'package:flutter_gen/gen_l10n/app_localizations.dart'; | ||
import 'package:provider/provider.dart'; | ||
import 'package:smooth_app/data_models/continuous_scan_model.dart'; | ||
import 'package:smooth_app/helpers/ui_helpers.dart'; | ||
import 'package:smooth_app/pages/scan/scan_page_helper.dart'; | ||
import 'package:smooth_app/widgets/ranking_floating_action_button.dart'; | ||
|
||
class ScanHeader extends StatelessWidget { | ||
const ScanHeader({Key? key}) : super(key: key); | ||
|
||
static const Duration _duration = Duration(milliseconds: 50); | ||
static const double _visibleOpacity = 0.8; | ||
static const double _invisibleOpacity = 0.0; | ||
|
||
@override | ||
Widget build(BuildContext context) { | ||
final AppLocalizations appLocalizations = AppLocalizations.of(context)!; | ||
final ContinuousScanModel model = context.watch<ContinuousScanModel>(); | ||
|
||
final ButtonStyle buttonStyle = ButtonStyle( | ||
shape: MaterialStateProperty.all<RoundedRectangleBorder>( | ||
RoundedRectangleBorder( | ||
borderRadius: BorderRadius.circular(18.0), | ||
), | ||
), | ||
); | ||
|
||
return AnimatedOpacity( | ||
opacity: | ||
model.getBarcodes().isNotEmpty ? _visibleOpacity : _invisibleOpacity, | ||
duration: _duration, | ||
child: Padding( | ||
padding: const EdgeInsets.symmetric( | ||
vertical: VERY_SMALL_SPACE, | ||
horizontal: MEDIUM_SPACE, | ||
), | ||
child: Row( | ||
mainAxisAlignment: MainAxisAlignment.spaceBetween, | ||
children: <Widget>[ | ||
ElevatedButton.icon( | ||
style: buttonStyle, | ||
icon: const Icon(Icons.cancel_outlined), | ||
onPressed: model.clearScanSession, | ||
label: Text(appLocalizations.clear), | ||
), | ||
ElevatedButton.icon( | ||
style: buttonStyle, | ||
icon: const Icon(RankingFloatingActionButton.rankingIconData), | ||
onPressed: () => openPersonalizedRankingPage(context), | ||
label: Text( | ||
appLocalizations.plural_compare_x_products( | ||
model.getBarcodes().length, | ||
), | ||
), | ||
), | ||
], | ||
), | ||
), | ||
); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters