Skip to content

Commit

Permalink
version up 20
Browse files Browse the repository at this point in the history
  • Loading branch information
JadeKim042386 committed May 30, 2023
1 parent 5d8d69b commit 0421cac
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion lib/blocs/time_bloc.dart
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ class TimerBloc extends Bloc<TimerEvent, TimerState> {
on<TimerTicked>(_onTicked);
}

static const List<int> times = [1, 15, 20, 25, 30, 35];
static const List<int> times = [15, 20, 25, 30, 35];
final Ticker _ticker;
final SharedPreferences prefs;
final int initDuration;
Expand Down
1 change: 0 additions & 1 deletion lib/screens/home_screen.dart
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,6 @@ class _HomeScreenState extends State<HomeScreen> with WidgetsBindingObserver {
@override
void didChangeAppLifecycleState(AppLifecycleState state) {
lifecycleState = state;
print(state);
super.didChangeAppLifecycleState(state);
}

Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ publish_to: 'none' # Remove this line if you wish to publish to pub.dev
# https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html
# In Windows, build-name is used as the major, minor, and patch parts
# of the product and file versions while build-number is used as the build suffix.
version: 1.19.0+19
version: 1.20.0+20

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

0 comments on commit 0421cac

Please sign in to comment.