Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: bug #247

Merged
merged 2 commits into from
Sep 1, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions lib/app/app.dart
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,8 @@ import 'package:abhiyaan/ui/views/splash/splash_view.dart';
LazySingleton(classType: ThemeService),
LazySingleton(classType: AuthenticationService),
LazySingleton(classType: AnalyticsService),
Singleton(classType: BottomNavViewModel, asType: BottomNavViewModel),
Singleton(classType: ProfileViewModel, asType: ProfileViewModel)
],
logger: StackedLogger(),
)
Expand Down
5 changes: 5 additions & 0 deletions lib/app/app.logger.dart

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion lib/utils/assets_constants.dart
Original file line number Diff line number Diff line change
Expand Up @@ -60,5 +60,5 @@ class AnimationAssets {
}

class AppConstants {
static const String appVersion = '1.0.6';
static const String appVersion = '1.1.5';
}
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: abhiyaan
description: A new Flutter project.
publish_to: "none"
version: 1.0.6+10
version: 1.1.5+10
# Major.Minor.Patch+Build
# Major - Major changes like UI/UX changes, new features, etc. Those changes that are not backward compatible.
# Minor - Minor changes like bug fixes, performance improvements, etc. Those changes that are backward compatible.
Expand Down