diff --git a/ios/Runner.xcodeproj/project.pbxproj b/ios/Runner.xcodeproj/project.pbxproj index 0a8140d1..1f9d87a2 100644 --- a/ios/Runner.xcodeproj/project.pbxproj +++ b/ios/Runner.xcodeproj/project.pbxproj @@ -44,8 +44,8 @@ 97C146FB1CF9000F007C117D /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = ""; }; 97C146FD1CF9000F007C117D /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = ""; }; 97C147001CF9000F007C117D /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = ""; }; - 6436409427A31CD300820AF7 /* pt */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = pt; path = pt.lproj/InfoPlist.strings; sourceTree = ""; }; - 6436409D27A31CD500820AF7 /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/InfoPlist.strings; sourceTree = ""; }; + 6436409227A31CD600820AF7 /* pt */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = pt; path = pt.lproj/InfoPlist.strings; sourceTree = ""; }; + 6436409227A31CDA00820AF7 /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/InfoPlist.strings; sourceTree = ""; }; 97C147021CF9000F007C117D /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; /* End PBXFileReference section */ @@ -225,8 +225,8 @@ 6436409C27A31CD800820AF7 /* InfoPlist.strings */ = { isa = PBXVariantGroup; children = ( - 6436409427A31CD300820AF7 /* pt */, - 6436409D27A31CD500820AF7 /* en */, + 6436409227A31CD600820AF7 /* pt */, + 6436409227A31CDA00820AF7 /* en */, ); name = InfoPlist.strings; sourceTree = ""; diff --git a/lib/components/organism_components/message_well_component/message_well_component_model.dart b/lib/components/organism_components/message_well_component/message_well_component_model.dart index 0c84c97e..3da2a723 100644 --- a/lib/components/organism_components/message_well_component/message_well_component_model.dart +++ b/lib/components/organism_components/message_well_component/message_well_component_model.dart @@ -1,16 +1,9 @@ import '/flutter_flow/flutter_flow_util.dart'; import 'message_well_component_widget.dart' show MessageWellComponentWidget; -import 'package:carousel_slider/carousel_slider.dart'; import 'package:flutter/material.dart'; class MessageWellComponentModel extends FlutterFlowModel { - /// State fields for stateful widgets in this component. - - // State field(s) for Carousel widget. - CarouselController? carouselController; - int carouselCurrentIndex = 1; - @override void initState(BuildContext context) {} diff --git a/lib/components/organism_components/message_well_component/message_well_component_widget.dart b/lib/components/organism_components/message_well_component/message_well_component_widget.dart index 8fbf856e..d8a5b8b8 100644 --- a/lib/components/organism_components/message_well_component/message_well_component_widget.dart +++ b/lib/components/organism_components/message_well_component/message_well_component_widget.dart @@ -1,7 +1,6 @@ import '/flutter_flow/flutter_flow_theme.dart'; import '/flutter_flow/flutter_flow_util.dart'; import '/flutter_flow/flutter_flow_widgets.dart'; -import 'package:carousel_slider/carousel_slider.dart'; import 'package:flutter/material.dart'; import 'package:google_fonts/google_fonts.dart'; import 'message_well_component_model.dart'; @@ -117,30 +116,6 @@ class _MessageWellComponentWidgetState ), ), ), - SizedBox( - width: double.infinity, - height: 180.0, - child: CarouselSlider( - items: [ - Container(), - Container(), - ], - carouselController: _model.carouselController ??= - CarouselController(), - options: CarouselOptions( - initialPage: 1, - viewportFraction: 0.5, - disableCenter: true, - enlargeCenterPage: true, - enlargeFactor: 0.25, - enableInfiniteScroll: true, - scrollDirection: Axis.vertical, - autoPlay: false, - onPageChanged: (index, _) => - _model.carouselCurrentIndex = index, - ), - ), - ), ], ), ), diff --git a/pubspec.yaml b/pubspec.yaml index 1ddabaf0..f0170cfa 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -28,7 +28,6 @@ dependencies: auto_size_text: 3.0.0 barcode_widget: 2.0.3 cached_network_image: 3.3.1 - carousel_slider: 4.2.1 collection: 1.18.0 crop_your_image: 1.0.0 csv: 6.0.0