Skip to content

Commit

Permalink
4.7.0+1
Browse files Browse the repository at this point in the history
Took 39 minutes
  • Loading branch information
Drawner committed Nov 24, 2023
1 parent 4421b2e commit ea65d4d
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@

## 4.7.0
## 4.7.0+1
November 23, 2023
- app_state.dart build() function incorrectly wrapped in Builder()
- Removed unused classes FieldWidgets InheritedStates and ScheduleNotifications
- Corrected Testing of a 'Close' button with if (button.evaluate().isEmpty) {

## 4.6.1
November 21, 2023
Expand Down
5 changes: 4 additions & 1 deletion example/integration_test/src/tests/menu/about_menu.dart
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,10 @@ Future<void> openAboutMenu(WidgetTester tester) async {

/// Close window
// Find the appropriate button even if translated.
final button = find.widgetWithText(TextButton, L10n.s('CLOSE'));
var button = find.widgetWithText(TextButton, L10n.s('CLOSE'));
if (button.evaluate().isEmpty) {
button = find.widgetWithText(TextButton, L10n.s('Close'));
}
expect(button, findsOneWidget, reason: _location);
await tester.tap(button);
await tester.pumpAndSettle();
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ homepage: https://www.andrioussolutions.com
repository: https://github.com/AndriousSolutions/fluttery_framework
issue_tracker: https://github.com/AndriousSolutions/fluttery_framework/issues?q=is%3Aissue+is%3Aopen

version: 4.7.0
version: 4.7.0+1

environment:
sdk: '>=2.19.0 <4.0.0'
Expand Down

0 comments on commit ea65d4d

Please sign in to comment.