Skip to content

Commit

Permalink
feat: upgrade to flutter 3.29, bump packages
Browse files Browse the repository at this point in the history
  • Loading branch information
BrightDV committed Feb 25, 2025
1 parent 57d3081 commit fc2b63b
Show file tree
Hide file tree
Showing 6 changed files with 195 additions and 171 deletions.
2 changes: 1 addition & 1 deletion .flutter
Submodule .flutter updated 3665 files
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ public static void registerWith(@NonNull FlutterEngine flutterEngine) {
try {
flutterEngine.getPlugins().add(new com.tekartik.sqflite.SqflitePlugin());
} catch (Exception e) {
Log.e(TAG, "Error registering plugin sqflite, com.tekartik.sqflite.SqflitePlugin", e);
Log.e(TAG, "Error registering plugin sqflite_android, com.tekartik.sqflite.SqflitePlugin", e);
}
try {
flutterEngine.getPlugins().add(new com.syncfusion.flutter.pdfviewer.SyncfusionFlutterPdfViewerPlugin());
Expand Down
6 changes: 3 additions & 3 deletions ios/Runner/GeneratedPluginRegistrant.m
Original file line number Diff line number Diff line change
Expand Up @@ -78,10 +78,10 @@
@import shared_preferences_foundation;
#endif

#if __has_include(<sqflite/SqflitePlugin.h>)
#import <sqflite/SqflitePlugin.h>
#if __has_include(<sqflite_darwin/SqflitePlugin.h>)
#import <sqflite_darwin/SqflitePlugin.h>
#else
@import sqflite;
@import sqflite_darwin;
#endif

#if __has_include(<syncfusion_flutter_pdfviewer/SyncfusionFlutterPdfViewerPlugin.h>)
Expand Down
2 changes: 1 addition & 1 deletion lib/helpers/news.dart
Original file line number Diff line number Diff line change
Expand Up @@ -2366,7 +2366,7 @@ class ImageGallery extends StatefulWidget {

class _ImageGalleryState extends State<ImageGallery> {
int _current = 0;
final CarouselController _controller = CarouselController();
final CarouselSliderController _controller = CarouselSliderController();

@override
Widget build(BuildContext context) {
Expand Down
Loading

0 comments on commit fc2b63b

Please sign in to comment.