Skip to content

Commit

Permalink
Fix screenshots - 1.0.72 🚀
Browse files Browse the repository at this point in the history
  • Loading branch information
brandonp2412 committed May 3, 2024
1 parent 9fa24e3 commit 225486d
Show file tree
Hide file tree
Showing 28 changed files with 19 additions and 4 deletions.
12 changes: 12 additions & 0 deletions fastlane/metadata/android/en-US/changelogs/79.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
- Fix screenshots
- Fix exporting/importing hidden and cardio types
- Fix turning off cardio when editing a set
- Stop animating to tabs after deleting
- Move empty entries message to the top of history
- Add history tab
- Update screenshots
- Update screenShots for compare
- Added tabBarState to every test
- Added global context No longer dependent on PlansPage being the first Page
- Added updated screenshots to compare
- Simplify screenshots
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
5 changes: 4 additions & 1 deletion integration_test/screenshot_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ List<PlansCompanion> plans = [
),
];

enum TabBarState { plans, graphs, timer }
enum TabBarState { history, plans, graphs, timer }

const screenshotExercise = "Dumbbell shoulder press";

Expand All @@ -133,6 +133,9 @@ BuildContext getBuildContext(WidgetTester tester, TabBarState? tabBarState) {
.currentContext!;
case TabBarState.timer:
return (tester.state(find.byType(TimerPage)) as TimerPageState).context;
case TabBarState.history:
return (tester.state(find.byType(HistoryPage)) as HistoryPageState)
.context;
case null:
break;
}
Expand Down
4 changes: 2 additions & 2 deletions lib/history_page.dart
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@ class HistoryPage extends StatefulWidget {
const HistoryPage({super.key});

@override
createState() => _HistoryPageState();
createState() => HistoryPageState();
}

class _HistoryPageState extends State<HistoryPage> {
class HistoryPageState extends State<HistoryPage> {
late Stream<List<GymSet>> _stream;
Set<int> _selected = {};
String _search = '';
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: flexify
description: Track gym progress, visualize graphs, enjoy offline support & timers
publish_to: none
version: 1.0.71+78
version: 1.0.72+79
environment:
sdk: '>=3.2.6 <4.0.0'
dependencies:
Expand Down

0 comments on commit 225486d

Please sign in to comment.