diff --git a/bhagavad_gita/android/app/build.gradle b/bhagavad_gita/android/app/build.gradle index ce9b6db..62ec72e 100644 --- a/bhagavad_gita/android/app/build.gradle +++ b/bhagavad_gita/android/app/build.gradle @@ -27,7 +27,7 @@ apply plugin: 'com.google.gms.google-services' apply from: "$flutterRoot/packages/flutter_tools/gradle/flutter.gradle" android { - compileSdkVersion 30 + compileSdkVersion 33 sourceSets { main.java.srcDirs += 'src/main/kotlin' diff --git a/bhagavad_gita/android/build.gradle b/bhagavad_gita/android/build.gradle index fc98117..0d1f106 100644 --- a/bhagavad_gita/android/build.gradle +++ b/bhagavad_gita/android/build.gradle @@ -1,5 +1,5 @@ buildscript { - ext.kotlin_version = '1.5.31' + ext.kotlin_version = '1.6.10' repositories { google() jcenter() diff --git a/bhagavad_gita/lib/screens/home_screen.dart/about_gita_page.dart b/bhagavad_gita/lib/screens/home_screen.dart/about_gita_page.dart index d938117..192773c 100644 --- a/bhagavad_gita/lib/screens/home_screen.dart/about_gita_page.dart +++ b/bhagavad_gita/lib/screens/home_screen.dart/about_gita_page.dart @@ -16,189 +16,222 @@ class _AboutGitaScreenState extends State super.build(context); height = MediaQuery.of(context).size.height; width = MediaQuery.of(context).size.width; - return Scaffold( - body: SingleChildScrollView( - child: Column( - children: [ - Stack( - children: [ - Container( - width: MediaQuery.of(context).size.width, - height: MediaQuery.of(context).size.height / 2.7, - decoration: BoxDecoration( - borderRadius: BorderRadius.circular(15), - image: DecorationImage( - image: AssetImage('assets/images/image_aboutGita.jpg'), - fit: BoxFit.cover), + return SafeArea( + child: Scaffold( + body: SingleChildScrollView( + child: Column( + children: [ + Stack( + children: [ + Container( + width: MediaQuery.of(context).size.width, + height: MediaQuery.of(context).size.height / 2.7, + decoration: BoxDecoration( + borderRadius: BorderRadius.circular(15), + image: DecorationImage( + image: + AssetImage('assets/images/image_aboutGita.jpg'), + fit: BoxFit.cover), + ), ), - ), - Container( - width: MediaQuery.of(context).size.width, - height: MediaQuery.of(context).size.height / 2.7, - decoration: BoxDecoration( - borderRadius: BorderRadius.circular(15), - image: DecorationImage( - image: AssetImage( - 'assets/images/black_imageAboutGita.png'), - fit: BoxFit.cover), + Container( + width: MediaQuery.of(context).size.width, + height: MediaQuery.of(context).size.height / 2.7, + decoration: BoxDecoration( + borderRadius: BorderRadius.circular(15), + image: DecorationImage( + image: AssetImage( + 'assets/images/black_imageAboutGita.png'), + fit: BoxFit.cover), + ), ), - ), - Positioned( - top: MediaQuery.of(context).size.height / kPadding * 2.7, - left: kDefaultPadding, - child: Container( - child: Column( - crossAxisAlignment: CrossAxisAlignment.start, + Positioned( + top: MediaQuery.of(context).size.height / kPadding * 2.7, + left: kDefaultPadding, + child: Container( + child: Column( + crossAxisAlignment: CrossAxisAlignment.start, + children: [ + Text( + DemoLocalization.of(context)! + .getTranslatedValue('about_gita') + .toString(), + style: Theme.of(context) + .textTheme + .headline1! + .copyWith(fontSize: 30, color: whiteColor), + ), + // Text( + // DemoLocalization.of(context)! + // .getTranslatedValue('gita') + // .toString(), + // textAlign: TextAlign.justify, + // style: Theme.of(context) + // .textTheme + // .headline1! + // .copyWith(fontSize: 28, color: orangeColor), + // ), + ], + ), + ), + ), + ], + ), + Column( + children: [ + Stack( + children: [ + Row( + children: [ + Padding( + padding: EdgeInsets.all(kDefaultPadding * 2), + child: SvgPicture.asset( + 'assets/icons/icon_quote_AboutGita.svg', + ), + ), + ], + ), + Positioned( + top: kDefaultPadding * 2.7, + left: 0, + right: 0, + child: Container( + child: Text( + DemoLocalization.of(context)! + .getTranslatedValue('unlikeModernWriting') + .toString(), + textAlign: TextAlign.center, + style: Theme.of(context) + .textTheme + .headline1! + .copyWith( + fontSize: (Localizations.localeOf(context) + .languageCode == + 'hi') + ? 21 + : 20, + color: orangeColor), + ), + ), + ), + ], + ), + ], + ), + Padding( + padding: const EdgeInsets.all(10), + ), + Padding( + padding: EdgeInsets.symmetric(horizontal: kDefaultPadding), + child: Column( + children: [ + RichText( + textAlign: TextAlign.left, + text: TextSpan( + children: [ + TextSpan( + text: DemoLocalization.of(context)! + .getTranslatedValue('gitaStory') + .toString(), + style: Theme.of(context) + .textTheme + .subtitle1! + .copyWith( + fontSize: (Localizations.localeOf(context) + .languageCode == + 'hi') + ? 20 + : 18, + color: blackColor), + ) + ], + ), + ), + SizedBox(height: kDefaultPadding * 1.5), + Row( + mainAxisAlignment: MainAxisAlignment.center, children: [ + SvgPicture.asset( + "assets/icons/icon_left_rtansection.svg"), + SizedBox(width: kDefaultPadding), Text( DemoLocalization.of(context)! - .getTranslatedValue('about_gita') + .getTranslatedValue('story') .toString(), style: Theme.of(context) .textTheme - .headline1! - .copyWith(fontSize: 30, color: whiteColor), + .subtitle1! + .copyWith( + fontSize: (Localizations.localeOf(context) + .languageCode == + 'hi') + ? 20 + : 18, + fontWeight: FontWeight.w600), ), - // Text( - // DemoLocalization.of(context)! - // .getTranslatedValue('gita') - // .toString(), - // textAlign: TextAlign.justify, - // style: Theme.of(context) - // .textTheme - // .headline1! - // .copyWith(fontSize: 28, color: orangeColor), - // ), + SizedBox(width: kDefaultPadding), + SvgPicture.asset( + "assets/icons/icon_right_translation.svg") ], ), - ), - ), - ], - ), - Column( - children: [ - Stack( - children: [ + SizedBox(height: kDefaultPadding), + Text( + DemoLocalization.of(context)! + .getTranslatedValue('gitaStoryDetail') + .toString(), + style: Theme.of(context).textTheme.subtitle1!.copyWith( + fontSize: + (Localizations.localeOf(context).languageCode == + 'hi') + ? 20 + : 18, + color: blackColor)), + SizedBox(height: kDefaultPadding * 1.5), Row( + mainAxisAlignment: MainAxisAlignment.center, children: [ - Padding( - padding: EdgeInsets.all(kDefaultPadding * 2), - child: SvgPicture.asset( - 'assets/icons/icon_quote_AboutGita.svg', - ), - ), - ], - ), - Positioned( - top: kDefaultPadding * 2.7, - left: 0, - right: 0, - child: Container( - child: Text( + SvgPicture.asset( + "assets/icons/icon_left_rtansection.svg"), + SizedBox(width: kDefaultPadding), + Text( DemoLocalization.of(context)! - .getTranslatedValue('unlikeModernWriting') + .getTranslatedValue('conclusion') .toString(), - textAlign: TextAlign.center, style: Theme.of(context) .textTheme - .headline1! - .copyWith(fontSize: - (Localizations.localeOf(context).languageCode == 'hi') ? - 21 : 20, color: orangeColor), + .subtitle1! + .copyWith( + fontSize: (Localizations.localeOf(context) + .languageCode == + 'hi') + ? 20 + : 18, + fontWeight: FontWeight.w600), ), - ), - ), - ], - ), - ], - ), - Padding( - padding: const EdgeInsets.all(10), - ), - Padding( - padding: EdgeInsets.symmetric(horizontal: kDefaultPadding), - child: Column( - children: [ - RichText( - textAlign: TextAlign.left, - text: TextSpan( - children: [ - TextSpan( - text: DemoLocalization.of(context)! - .getTranslatedValue('gitaStory') - .toString(), - style: Theme.of(context) - .textTheme.subtitle1! - .copyWith(fontSize: (Localizations.localeOf(context).languageCode == 'hi') ? - 20 : 18, color: blackColor), - ) + SizedBox(width: kDefaultPadding), + SvgPicture.asset( + "assets/icons/icon_right_translation.svg") ], ), - ), - SizedBox(height: kDefaultPadding * 1.5), - Row( - mainAxisAlignment: MainAxisAlignment.center, - children: [ - SvgPicture.asset( - "assets/icons/icon_left_rtansection.svg"), - SizedBox(width: kDefaultPadding), - Text( - DemoLocalization.of(context)! - .getTranslatedValue('story') - .toString(), - style: Theme.of(context).textTheme.subtitle1!.copyWith( - fontSize: (Localizations.localeOf(context).languageCode == 'hi') ? - 20 : 18, fontWeight: FontWeight.w600), - ), - SizedBox(width: kDefaultPadding), - SvgPicture.asset( - "assets/icons/icon_right_translation.svg") - ], - ), - SizedBox(height: kDefaultPadding), - Text( + SizedBox(height: kDefaultPadding), + Text( DemoLocalization.of(context)! - .getTranslatedValue('gitaStoryDetail') + .getTranslatedValue('conclusionDetail') .toString(), - style: Theme.of(context) - .textTheme.subtitle1! - .copyWith(fontSize: (Localizations.localeOf(context).languageCode == 'hi') ? - 20 : 18, color: blackColor)), - SizedBox(height: kDefaultPadding * 1.5), - Row( - mainAxisAlignment: MainAxisAlignment.center, - children: [ - SvgPicture.asset( - "assets/icons/icon_left_rtansection.svg"), - SizedBox(width: kDefaultPadding), - Text( - DemoLocalization.of(context)! - .getTranslatedValue('conclusion') - .toString(), - style: Theme.of(context).textTheme.subtitle1!.copyWith( - fontSize: (Localizations.localeOf(context).languageCode == 'hi') ? - 20 : 18, fontWeight: FontWeight.w600), - ), - SizedBox(width: kDefaultPadding), - SvgPicture.asset( - "assets/icons/icon_right_translation.svg") - ], - ), - SizedBox(height: kDefaultPadding), - Text( - DemoLocalization.of(context)! - .getTranslatedValue('conclusionDetail') - .toString(), - style: Theme.of(context) - .textTheme.subtitle1! - .copyWith(fontSize: (Localizations.localeOf(context).languageCode == 'hi') ? - 20 : 18, color: blackColor), - ), - SizedBox(height: kDefaultPadding), - ], + style: Theme.of(context).textTheme.subtitle1!.copyWith( + fontSize: + (Localizations.localeOf(context).languageCode == + 'hi') + ? 20 + : 18, + color: blackColor), + ), + SizedBox(height: kDefaultPadding), + ], + ), ), - ), - ], + ], + ), ), ), ); diff --git a/bhagavad_gita/lib/widgets/verse_of_the_day_widget.dart b/bhagavad_gita/lib/widgets/verse_of_the_day_widget.dart index 1e8e18f..408152e 100644 --- a/bhagavad_gita/lib/widgets/verse_of_the_day_widget.dart +++ b/bhagavad_gita/lib/widgets/verse_of_the_day_widget.dart @@ -90,8 +90,7 @@ class _VerseOfTheDayWidgetState extends State { height: (width - kDefaultPadding) * 0.52, decoration: BoxDecoration( image: DecorationImage( - image: - AssetImage('assets/images/gyan-vigyana-yoga.jpg'), + image: AssetImage('assets/images/gyan-vigyana-yoga.jpg'), fit: BoxFit.fill), borderRadius: BorderRadius.circular(kDefaultCornerRadius)), child: Stack( @@ -109,8 +108,9 @@ class _VerseOfTheDayWidgetState extends State { left: kDefaultPadding, top: kDefaultPadding, bottom: kPadding), - child: Column( - crossAxisAlignment: CrossAxisAlignment.start, + child: ListView( + // crossAxisAlignment: CrossAxisAlignment.start, + children: [ Text( DemoLocalization.of(context)! @@ -120,37 +120,56 @@ class _VerseOfTheDayWidgetState extends State { .textTheme .headline2! .copyWith( - color: Colors.orangeAccent, fontSize: width * 0.04, fontWeight: FontWeight.w700), + color: Colors.orangeAccent, + fontSize: width * 0.04, + fontWeight: FontWeight.w700), + ), + SizedBox( + height: MediaQuery.of(context).size.height * 0.02, ), - Spacer(), VerseOfTheDayTextWidget( verseID: "${allVerseOTheDayResponseModel.allVerseOfTheDays!.nodes![0].verseOrder ?? 0}", ), - TextButton( - onPressed: () { - Navigator.push( - context, - MaterialPageRoute( - builder: (context) => ContinueReading( - verseID: allVerseOTheDayResponseModel - .allVerseOfTheDays!.nodes![0].verseOrder + Column( + crossAxisAlignment: CrossAxisAlignment.start, + children: [ + Container( + height: + MediaQuery.of(context).size.height * 0.042, + child: TextButton( + onPressed: () { + Navigator.push( + context, + MaterialPageRoute( + builder: (context) => ContinueReading( + verseID: allVerseOTheDayResponseModel + .allVerseOfTheDays! + .nodes![0] + .verseOrder + .toString(), + ), + ), + ); + }, + child: Text( + DemoLocalization.of(context)! + .getTranslatedValue('readMore') .toString(), + style: Theme.of(context) + .textTheme + .headline2! + .copyWith( + color: Colors.white, + fontSize: width * 0.035), ), ), - ); - }, - child: Text( - DemoLocalization.of(context)! - .getTranslatedValue('readMore') - .toString(), - style: Theme.of(context) - .textTheme - .headline2! - .copyWith( - color: Colors.white, fontSize: width * 0.035), - ), - ) + ), + ], + ), + SizedBox( + height: MediaQuery.of(context).size.height * 0.02, + ), ], ), ) @@ -257,8 +276,8 @@ class _VerseOfTheDayTextWidgetState extends State { padding: EdgeInsets.only( right: 18.0, ), - child: RichText( - maxLines: 4, + child: RichText( + maxLines: null, text: TextSpan( // text: // '${verseOTheDayDetailResponseModel.gitaVerseById!.chapterNumber ?? 0}.${verseOTheDayDetailResponseModel.gitaVerseById!.verseNumber ?? 0} | ', @@ -281,8 +300,7 @@ class _VerseOfTheDayTextWidgetState extends State { ), ], ), - ) - ); + )); }, ), ); diff --git a/bhagavad_gita/pubspec.lock b/bhagavad_gita/pubspec.lock index f770b74..4ef7ed6 100644 --- a/bhagavad_gita/pubspec.lock +++ b/bhagavad_gita/pubspec.lock @@ -7,21 +7,21 @@ packages: name: archive url: "https://pub.dartlang.org" source: hosted - version: "3.1.6" + version: "3.3.5" args: dependency: transitive description: name: args url: "https://pub.dartlang.org" source: hosted - version: "2.3.0" + version: "2.3.1" async: dependency: transitive description: name: async url: "https://pub.dartlang.org" source: hosted - version: "2.8.2" + version: "2.9.0" boolean_selector: dependency: transitive description: @@ -35,208 +35,187 @@ packages: name: characters url: "https://pub.dartlang.org" source: hosted - version: "1.2.0" - charcode: - dependency: transitive - description: - name: charcode - url: "https://pub.dartlang.org" - source: hosted - version: "1.3.1" + version: "1.2.1" clock: dependency: transitive description: name: clock url: "https://pub.dartlang.org" source: hosted - version: "1.1.0" + version: "1.1.1" collection: dependency: transitive description: name: collection url: "https://pub.dartlang.org" source: hosted - version: "1.15.0" - connectivity: - dependency: transitive - description: - name: connectivity - url: "https://pub.dartlang.org" - source: hosted - version: "3.0.6" - connectivity_for_web: - dependency: transitive - description: - name: connectivity_for_web - url: "https://pub.dartlang.org" - source: hosted - version: "0.4.0+1" - connectivity_macos: - dependency: transitive - description: - name: connectivity_macos - url: "https://pub.dartlang.org" - source: hosted - version: "0.2.1+2" - connectivity_platform_interface: - dependency: transitive - description: - name: connectivity_platform_interface - url: "https://pub.dartlang.org" - source: hosted - version: "2.0.1" + version: "1.16.0" connectivity_plus: dependency: transitive description: name: connectivity_plus url: "https://pub.dartlang.org" source: hosted - version: "1.4.0" + version: "2.3.9" connectivity_plus_linux: dependency: transitive description: name: connectivity_plus_linux url: "https://pub.dartlang.org" source: hosted - version: "1.1.1" + version: "1.3.1" connectivity_plus_macos: dependency: transitive description: name: connectivity_plus_macos url: "https://pub.dartlang.org" source: hosted - version: "1.2.1" + version: "1.2.6" connectivity_plus_platform_interface: dependency: transitive description: name: connectivity_plus_platform_interface url: "https://pub.dartlang.org" source: hosted - version: "1.1.1" + version: "1.2.3" connectivity_plus_web: dependency: transitive description: name: connectivity_plus_web url: "https://pub.dartlang.org" source: hosted - version: "1.1.0+1" + version: "1.2.5" connectivity_plus_windows: dependency: transitive description: name: connectivity_plus_windows url: "https://pub.dartlang.org" source: hosted - version: "1.2.0" + version: "1.2.2" + convert: + dependency: transitive + description: + name: convert + url: "https://pub.dartlang.org" + source: hosted + version: "3.1.1" crypto: dependency: transitive description: name: crypto url: "https://pub.dartlang.org" source: hosted - version: "3.0.1" + version: "3.0.2" cupertino_icons: dependency: "direct main" description: name: cupertino_icons url: "https://pub.dartlang.org" source: hosted - version: "1.0.4" + version: "1.0.5" dbus: dependency: transitive description: name: dbus url: "https://pub.dartlang.org" source: hosted - version: "0.6.6" + version: "0.7.3" fake_async: dependency: transitive description: name: fake_async url: "https://pub.dartlang.org" source: hosted - version: "1.2.0" + version: "1.3.1" ffi: dependency: transitive description: name: ffi url: "https://pub.dartlang.org" source: hosted - version: "1.1.2" + version: "1.2.1" file: dependency: transitive description: name: file url: "https://pub.dartlang.org" source: hosted - version: "6.1.2" + version: "6.1.4" firebase_core: dependency: "direct main" description: name: firebase_core url: "https://pub.dartlang.org" source: hosted - version: "1.10.6" + version: "1.24.0" firebase_core_platform_interface: - dependency: transitive + dependency: "direct main" description: name: firebase_core_platform_interface url: "https://pub.dartlang.org" source: hosted - version: "4.2.3" + version: "4.5.1" firebase_core_web: dependency: transitive description: name: firebase_core_web url: "https://pub.dartlang.org" source: hosted - version: "1.5.3" + version: "1.7.3" firebase_messaging: dependency: "direct main" description: name: firebase_messaging url: "https://pub.dartlang.org" source: hosted - version: "11.2.4" + version: "11.4.4" firebase_messaging_platform_interface: dependency: transitive description: name: firebase_messaging_platform_interface url: "https://pub.dartlang.org" source: hosted - version: "3.1.4" + version: "3.5.4" firebase_messaging_web: dependency: transitive description: name: firebase_messaging_web url: "https://pub.dartlang.org" source: hosted - version: "2.2.5" + version: "2.4.4" flutter: dependency: "direct main" description: flutter source: sdk version: "0.0.0" + flutter_hooks: + dependency: transitive + description: + name: flutter_hooks + url: "https://pub.dartlang.org" + source: hosted + version: "0.18.5+1" flutter_launcher_icons: dependency: "direct dev" description: name: flutter_launcher_icons url: "https://pub.dartlang.org" source: hosted - version: "0.9.2" + version: "0.9.3" flutter_local_notifications: dependency: "direct main" description: name: flutter_local_notifications url: "https://pub.dartlang.org" source: hosted - version: "9.2.0" + version: "9.9.1" flutter_local_notifications_linux: dependency: transitive description: name: flutter_local_notifications_linux url: "https://pub.dartlang.org" source: hosted - version: "0.4.1+1" + version: "0.5.1" flutter_local_notifications_platform_interface: dependency: transitive description: @@ -255,7 +234,7 @@ packages: name: flutter_offline url: "https://pub.dartlang.org" source: hosted - version: "2.0.0" + version: "2.1.0" flutter_svg: dependency: "direct main" description: @@ -286,91 +265,91 @@ packages: name: gql url: "https://pub.dartlang.org" source: hosted - version: "0.13.0" + version: "0.13.1" gql_dedupe_link: dependency: transitive description: name: gql_dedupe_link url: "https://pub.dartlang.org" source: hosted - version: "2.0.0" + version: "2.0.2" gql_error_link: dependency: transitive description: name: gql_error_link url: "https://pub.dartlang.org" source: hosted - version: "0.2.0" + version: "0.2.2" gql_exec: dependency: transitive description: name: gql_exec url: "https://pub.dartlang.org" source: hosted - version: "0.3.0" + version: "0.4.0" gql_http_link: dependency: transitive description: name: gql_http_link url: "https://pub.dartlang.org" source: hosted - version: "0.4.0" + version: "0.4.2" gql_link: dependency: transitive description: name: gql_link url: "https://pub.dartlang.org" source: hosted - version: "0.4.0" + version: "0.4.2" gql_transform_link: dependency: transitive description: name: gql_transform_link url: "https://pub.dartlang.org" source: hosted - version: "0.2.0" + version: "0.2.2" graphql: dependency: transitive description: name: graphql url: "https://pub.dartlang.org" source: hosted - version: "5.0.0" + version: "5.1.1" graphql_flutter: dependency: "direct main" description: name: graphql_flutter url: "https://pub.dartlang.org" source: hosted - version: "5.0.0" + version: "5.1.0" hive: dependency: transitive description: name: hive url: "https://pub.dartlang.org" source: hosted - version: "2.0.5" + version: "2.2.3" http: dependency: transitive description: name: http url: "https://pub.dartlang.org" source: hosted - version: "0.13.4" + version: "0.13.5" http_parser: dependency: transitive description: name: http_parser url: "https://pub.dartlang.org" source: hosted - version: "4.0.0" + version: "4.0.2" image: dependency: transitive description: name: image url: "https://pub.dartlang.org" source: hosted - version: "3.1.0" + version: "3.1.3" intl: dependency: "direct main" description: @@ -384,7 +363,7 @@ packages: name: js url: "https://pub.dartlang.org" source: hosted - version: "0.6.3" + version: "0.6.4" list_tile_switch: dependency: "direct main" description: @@ -398,42 +377,91 @@ packages: name: matcher url: "https://pub.dartlang.org" source: hosted - version: "0.12.11" + version: "0.12.12" + material_color_utilities: + dependency: transitive + description: + name: material_color_utilities + url: "https://pub.dartlang.org" + source: hosted + version: "0.1.5" meta: dependency: transitive description: name: meta url: "https://pub.dartlang.org" source: hosted - version: "1.7.0" + version: "1.8.0" mime: dependency: transitive description: name: mime url: "https://pub.dartlang.org" source: hosted + version: "1.0.3" + network_info_plus: + dependency: transitive + description: + name: network_info_plus + url: "https://pub.dartlang.org" + source: hosted + version: "2.3.2" + network_info_plus_linux: + dependency: transitive + description: + name: network_info_plus_linux + url: "https://pub.dartlang.org" + source: hosted + version: "1.1.2" + network_info_plus_macos: + dependency: transitive + description: + name: network_info_plus_macos + url: "https://pub.dartlang.org" + source: hosted + version: "1.3.0" + network_info_plus_platform_interface: + dependency: transitive + description: + name: network_info_plus_platform_interface + url: "https://pub.dartlang.org" + source: hosted + version: "1.1.3" + network_info_plus_web: + dependency: transitive + description: + name: network_info_plus_web + url: "https://pub.dartlang.org" + source: hosted version: "1.0.1" + network_info_plus_windows: + dependency: transitive + description: + name: network_info_plus_windows + url: "https://pub.dartlang.org" + source: hosted + version: "1.0.2" nm: dependency: transitive description: name: nm url: "https://pub.dartlang.org" source: hosted - version: "0.4.2" + version: "0.5.0" normalize: dependency: transitive description: name: normalize url: "https://pub.dartlang.org" source: hosted - version: "0.5.5" + version: "0.6.0+1" path: dependency: transitive description: name: path url: "https://pub.dartlang.org" source: hosted - version: "1.8.0" + version: "1.8.2" path_drawing: dependency: transitive description: @@ -454,56 +482,56 @@ packages: name: path_provider url: "https://pub.dartlang.org" source: hosted - version: "2.0.8" + version: "2.0.11" path_provider_android: dependency: transitive description: name: path_provider_android url: "https://pub.dartlang.org" source: hosted - version: "2.0.11" + version: "2.0.22" path_provider_ios: dependency: transitive description: name: path_provider_ios url: "https://pub.dartlang.org" source: hosted - version: "2.0.7" + version: "2.0.11" path_provider_linux: dependency: transitive description: name: path_provider_linux url: "https://pub.dartlang.org" source: hosted - version: "2.1.4" + version: "2.1.7" path_provider_macos: dependency: transitive description: name: path_provider_macos url: "https://pub.dartlang.org" source: hosted - version: "2.0.4" + version: "2.0.6" path_provider_platform_interface: dependency: transitive description: name: path_provider_platform_interface url: "https://pub.dartlang.org" source: hosted - version: "2.0.1" + version: "2.0.5" path_provider_windows: dependency: transitive description: name: path_provider_windows url: "https://pub.dartlang.org" source: hosted - version: "2.0.4" + version: "2.0.7" petitparser: dependency: transitive description: name: petitparser url: "https://pub.dartlang.org" source: hosted - version: "4.4.0" + version: "5.1.0" platform: dependency: transitive description: @@ -517,7 +545,14 @@ packages: name: plugin_platform_interface url: "https://pub.dartlang.org" source: hosted - version: "2.0.2" + version: "2.1.3" + pointycastle: + dependency: transitive + description: + name: pointycastle + url: "https://pub.dartlang.org" + source: hosted + version: "3.6.2" process: dependency: transitive description: @@ -531,7 +566,7 @@ packages: name: rxdart url: "https://pub.dartlang.org" source: hosted - version: "0.26.0" + version: "0.27.7" share: dependency: "direct main" description: @@ -545,56 +580,56 @@ packages: name: shared_preferences url: "https://pub.dartlang.org" source: hosted - version: "2.0.11" + version: "2.0.15" shared_preferences_android: dependency: transitive description: name: shared_preferences_android url: "https://pub.dartlang.org" source: hosted - version: "2.0.9" + version: "2.0.14" shared_preferences_ios: dependency: transitive description: name: shared_preferences_ios url: "https://pub.dartlang.org" source: hosted - version: "2.0.8" + version: "2.1.1" shared_preferences_linux: dependency: transitive description: name: shared_preferences_linux url: "https://pub.dartlang.org" source: hosted - version: "2.0.3" + version: "2.1.2" shared_preferences_macos: dependency: transitive description: name: shared_preferences_macos url: "https://pub.dartlang.org" source: hosted - version: "2.0.2" + version: "2.0.4" shared_preferences_platform_interface: dependency: transitive description: name: shared_preferences_platform_interface url: "https://pub.dartlang.org" source: hosted - version: "2.0.0" + version: "2.1.0" shared_preferences_web: dependency: transitive description: name: shared_preferences_web url: "https://pub.dartlang.org" source: hosted - version: "2.0.2" + version: "2.0.4" shared_preferences_windows: dependency: transitive description: name: shared_preferences_windows url: "https://pub.dartlang.org" source: hosted - version: "2.0.3" + version: "2.1.2" sky_engine: dependency: transitive description: flutter @@ -606,7 +641,7 @@ packages: name: source_span url: "https://pub.dartlang.org" source: hosted - version: "1.8.1" + version: "1.9.0" stack_trace: dependency: transitive description: @@ -627,21 +662,21 @@ packages: name: string_scanner url: "https://pub.dartlang.org" source: hosted - version: "1.1.0" + version: "1.1.1" term_glyph: dependency: transitive description: name: term_glyph url: "https://pub.dartlang.org" source: hosted - version: "1.2.0" + version: "1.2.1" test_api: dependency: transitive description: name: test_api url: "https://pub.dartlang.org" source: hosted - version: "0.4.3" + version: "0.4.12" timezone: dependency: transitive description: @@ -655,70 +690,56 @@ packages: name: typed_data url: "https://pub.dartlang.org" source: hosted - version: "1.3.0" + version: "1.3.1" uuid: dependency: transitive description: name: uuid url: "https://pub.dartlang.org" source: hosted - version: "3.0.5" + version: "3.0.7" vector_math: dependency: transitive description: name: vector_math url: "https://pub.dartlang.org" source: hosted - version: "2.1.1" + version: "2.1.2" web_socket_channel: dependency: transitive description: name: web_socket_channel url: "https://pub.dartlang.org" source: hosted - version: "2.1.0" - wifi_info_flutter: - dependency: transitive - description: - name: wifi_info_flutter - url: "https://pub.dartlang.org" - source: hosted - version: "2.0.2" - wifi_info_flutter_platform_interface: - dependency: transitive - description: - name: wifi_info_flutter_platform_interface - url: "https://pub.dartlang.org" - source: hosted - version: "2.0.1" + version: "2.2.0" win32: dependency: transitive description: name: win32 url: "https://pub.dartlang.org" source: hosted - version: "2.3.3" + version: "2.6.1" xdg_directories: dependency: transitive description: name: xdg_directories url: "https://pub.dartlang.org" source: hosted - version: "0.2.0" + version: "0.2.0+2" xml: dependency: transitive description: name: xml url: "https://pub.dartlang.org" source: hosted - version: "5.3.1" + version: "5.4.1" yaml: dependency: transitive description: name: yaml url: "https://pub.dartlang.org" source: hosted - version: "3.1.0" + version: "3.1.1" sdks: - dart: ">=2.14.0 <3.0.0" - flutter: ">=2.5.0" + dart: ">=2.18.0 <3.0.0" + flutter: ">=3.0.0" diff --git a/bhagavad_gita/pubspec.yaml b/bhagavad_gita/pubspec.yaml index 06cfa24..0e41d12 100644 --- a/bhagavad_gita/pubspec.yaml +++ b/bhagavad_gita/pubspec.yaml @@ -26,6 +26,7 @@ dependencies: firebase_messaging: ^11.2.4 firebase_core: ^1.10.6 flutter_local_notifications: ^9.2.0 + firebase_core_platform_interface: 4.5.1 dev_dependencies: flutter_launcher_icons: ^0.9.2