Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/develop' into refactor/lazy-prov…
Browse files Browse the repository at this point in the history
…ider
  • Loading branch information
bdmendes committed Jul 10, 2023
2 parents 18d2b44 + 20ed40b commit 9304191
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 8 deletions.
2 changes: 1 addition & 1 deletion uni/app_version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.5.29+147
1.5.30+148
3 changes: 1 addition & 2 deletions uni/lib/view/exams/widgets/exam_row.dart
Original file line number Diff line number Diff line change
Expand Up @@ -80,8 +80,7 @@ class _ExamRowState extends State<ExamRow> {
widget.exam.id, Completer());
})),
IconButton(
icon: const Icon(MdiIcons.calendarPlus,
size: 30),
icon: Icon(MdiIcons.calendarPlus, size: 30),
onPressed: () => Add2Calendar.addEvent2Cal(
createExamEvent())),
]),
Expand Down
3 changes: 3 additions & 0 deletions uni/lib/view/home/home.dart
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ import 'package:uni/model/providers/lazy/exam_provider.dart';
import 'package:uni/model/providers/lazy/home_page_provider.dart';
import 'package:uni/model/providers/lazy/lecture_provider.dart';
import 'package:uni/model/providers/lazy/library_occupation_provider.dart';
import 'package:uni/model/providers/lazy/reference_provider.dart';
import 'package:uni/model/providers/startup/profile_provider.dart';
import 'package:uni/model/providers/state_provider_notifier.dart';
import 'package:uni/utils/favorite_widget_type.dart';
Expand Down Expand Up @@ -37,6 +38,8 @@ class HomePageViewState extends GeneralPageViewState {
case FavoriteWidgetType.account:
providersToUpdate
.add(Provider.of<ProfileProvider>(context, listen: false));
providersToUpdate
.add(Provider.of<ReferenceProvider>(context, listen: false));
break;
case FavoriteWidgetType.exams:
providersToUpdate
Expand Down
10 changes: 5 additions & 5 deletions uni/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ publish_to: 'none' # Remove this line if you wish to publish to pub.dev
# To change it manually, override the value in app_version.txt.
# The app version code is automatically also bumped by CI.
# Do not change it manually.
version: 1.5.29+147
version: 1.5.30+148

environment:
sdk: ">=2.17.1 <3.0.0"
Expand Down Expand Up @@ -48,7 +48,7 @@ dependencies:
flutter_svg: ^2.0.0+1
synchronized: ^3.0.0
image: ^4.0.13
connectivity_plus: ^3.0.3
connectivity_plus: ^4.0.1
logger: ^1.1.0
url_launcher: ^6.0.2
flutter_markdown: ^0.6.0
Expand All @@ -58,7 +58,7 @@ dependencies:
sentry_flutter: ^7.5.2
email_validator: ^2.0.1
currency_text_input_formatter: ^2.1.5
expansion_tile_card: ^2.0.0
expansion_tile_card: ^3.0.0
collection: ^1.16.0
timelines: ^0.1.0
flutter_map: ^4.0.0
Expand All @@ -68,10 +68,10 @@ dependencies:
latlong2: ^0.8.1
flutter_map_marker_popup: ^4.0.1
workmanager: ^0.5.1
flutter_local_notifications: ^14.0.0+2
flutter_local_notifications: ^15.1.0+1
percent_indicator: ^4.2.2
shimmer: ^3.0.0
material_design_icons_flutter: ^6.0.7096
material_design_icons_flutter: ^7.0.7296
flutter_dotenv: ^5.0.2

dev_dependencies:
Expand Down

0 comments on commit 9304191

Please sign in to comment.