From 9c715244d0cc3d5b87cc3f4e678c4f6c5a08dd40 Mon Sep 17 00:00:00 2001 From: psantosh16 Date: Sat, 31 Aug 2024 17:03:07 +0530 Subject: [PATCH] fix: bug --- lib/app/app.dart | 2 ++ lib/app/app.logger.dart | 5 +++++ lib/utils/assets_constants.dart | 2 +- pubspec.yaml | 2 +- 4 files changed, 9 insertions(+), 2 deletions(-) diff --git a/lib/app/app.dart b/lib/app/app.dart index 8f0c7081..d116ed53 100644 --- a/lib/app/app.dart +++ b/lib/app/app.dart @@ -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(), ) diff --git a/lib/app/app.logger.dart b/lib/app/app.logger.dart index 1a39c01a..308f8ed3 100644 --- a/lib/app/app.logger.dart +++ b/lib/app/app.logger.dart @@ -6,6 +6,11 @@ // ignore_for_file: avoid_print, depend_on_referenced_packages +/// Maybe this should be generated for the user as well? +/// +/// import 'package:customer_app/services/stackdriver/stackdriver_service.dart'; +library; + import 'package:flutter/foundation.dart'; import 'package:logger/logger.dart'; diff --git a/lib/utils/assets_constants.dart b/lib/utils/assets_constants.dart index 8e638148..ba03132b 100644 --- a/lib/utils/assets_constants.dart +++ b/lib/utils/assets_constants.dart @@ -60,5 +60,5 @@ class AnimationAssets { } class AppConstants { - static const String appVersion = '1.0.6'; + static const String appVersion = '1.1.5'; } diff --git a/pubspec.yaml b/pubspec.yaml index 485b582e..4ab74c87 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -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.