Search code examples
flutterflutter-web

Flutter Web: Divider color not showing when scrolling page


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


Solution

  • 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,
      );
    }