Milad-Akarie / smooth_page_indicator

Flutter Smooth PageView indicators
MIT License
1.24k stars 147 forks source link

Can't build indicators like the one shown in the picture... #63

Closed hayatbangash55 closed 1 year ago

hayatbangash55 commented 1 year ago

1

Milad-Akarie commented 1 year ago

@hayatbangash55 I haven't seen the notification of your issue for some reason. you can use the CustomizableEffect and customize it to your liking

CustomizableEffect(
      activeDotDecoration: DotDecoration(
        color: Colors.indigo,
        rotationAngle: 180,
        borderRadius: BorderRadius.circular(24),
        dotBorder: DotBorder(
          padding: 0,
          width: 4,
          color: Colors.grey,
        ),
      ),
      dotDecoration: DotDecoration(
        color: Colors.grey,
        borderRadius: BorderRadius.circular(24),
        verticalOffset: 0,
      ),
      spacing: 12.0,
  ),