Home > Software engineering >  Flutter Web: Divider color not showing when scrolling page
Flutter Web: Divider color not showing when scrolling page

Time:11-02

In my flutter project, the Divider widget color is not showing when scrolling. The issue exists only in flutter web project.

CodePudding user response:

Since last two years I have been using this divider code below. It working well for all platforms. To fix your issue, provide your code.

Widget commonDividerWidget(Color color) {
  return Divider(
    thickness: 1.0,
    color: color,
  );
}
  • Related