progressBarColor property

Color? progressBarColor
final

Specifies the progress bar color of SfPdfViewer widget.

Widget build(BuildContext context) {
 return Scaffold(
     body: Center(
       child: SfTheme(
         data: SfThemeData(
           pdfViewerThemeData: SfPdfViewerThemeData(
             progressBarColor: Colors.blue
           )
         ),
     child: SfPdfViewer.asset(
          'assets/flutter-succinctly.pdf',
         ),
       ),
     )
  );
}

Implementation

final Color? progressBarColor;