Monday, June 11, 2018

Image Carousel with Flutter framework with basic animation using VS Code

Note: We are not going to build a carousel/slider from scratch, instead we are going to use a package called carousel_pro. In future tutorials I will show, how to build a carousel from scratch and how we can publish as a package.


Source code for the image carousel/slider

pubspec.yaml
name: image_carousel_app
description: A new Flutter project.
dependencies:
flutter:
sdk: flutter
carousel_pro: ^0.0.1
# The following adds the Cupertino Icons font to your application.
# Use with the CupertinoIcons class for iOS style icons.
cupertino_icons: ^0.1.2
dev_dependencies:
flutter_test:
sdk: flutter
# For information on the generic Dart part of this file, see the
# following page: https://www.dartlang.org/tools/pub/pubspec
# The following section is specific to Flutter.
flutter:
# The following line ensures that the Material Icons font is
# included with your application, so that you can use the icons in
# the material Icons class.
uses-material-design: true
# To add assets to your application, add an assets section, like this:
# assets:
# - images/a_dot_burr.jpeg
# - images/a_dot_ham.jpeg
assets:
- assets/images/1.jpg
- assets/images/2.jpg
- assets/images/3.jpg
- assets/images/4.jpg
# An image asset can refer to one or more resolution-specific "variants", see
# https://flutter.io/assets-and-images/#resolution-aware.
# For details regarding adding assets from package dependencies, see
# https://flutter.io/assets-and-images/#from-packages
# To add custom fonts to your application, add a fonts section here,
# in this "flutter" section. Each entry in this list should have a
# "family" key with the font family name, and a "fonts" key with a
# list giving the asset and other descriptors for the font. For
# example:
# fonts:
# - family: Schyler
# fonts:
# - asset: fonts/Schyler-Regular.ttf
# - asset: fonts/Schyler-Italic.ttf
# style: italic
# - family: Trajan Pro
# fonts:
# - asset: fonts/TrajanPro.ttf
# - asset: fonts/TrajanPro_Bold.ttf
# weight: 700
#
# For details regarding fonts from package dependencies,
# see https://flutter.io/custom-fonts/#from-packages
fonts:
- family: fira
fonts:
- asset: assets/fonts/FiraSans-Regular.ttf
view raw pubspec.yaml hosted with ❤ by GitHub


main.dart


Flutter developer wallpaper by slcoder - ego with coding:

7 comments:

  1. hey this carousel is awesome and i want to ask about how to get the image link? i want to tap the images and after that, it will move to another class and show the images

    ReplyDelete
    Replies
    1. Keep images location/address in separate list or variable and when the index change pass it to the class you want with constructor.

      Delete
  2. Hi, great example. How implements click action on tap item?

    ReplyDelete
    Replies
    1. Sorry for the late, you can wrap carousel with InkWell and implement a function for onTap

      Delete
  3. How we can add Text along with the image, some caption for each Individual Image

    ReplyDelete
    Replies
    1. For your situation there are some modifications to do if you use this package. I see now there are so many great Carousel packages like Swiper that you can use. Later I will post about that.

      Delete
  4. Thanks

    Your Code help me in my project

    ReplyDelete