Home > Software engineering >  Is there any way to implement swipe onboarding screen in flutter with indicators?
Is there any way to implement swipe onboarding screen in flutter with indicators?

Time:01-16

enter image description here

I tried to use two packages carousel_indicator and flutter_onboarding_slider. But my issue is I need to implement indicator like in the image. The selected indicator is a bit big in width. Could anyone help with this?

CodePudding user response:

To show indicators you will have to use another package.

Something like smooth_page_indicator

CodePudding user response:

You can use any of the following packages:

  1. onboarding - Flutter
  2. smooth_page_indicator - Flutter

Add in your pubspec.yaml File and import. You follow the guide for the usage.

  • Related