dataPagerThemeData property

SfDataPagerThemeData dataPagerThemeData
final

Defines the default configuration of dataPager widgets.

Widget build(BuildContext context) {
 return Scaffold(
   appBar: AppBar(),
     body: Center(
       child: SfTheme(
         data: SfThemeData(
           dataPagerThemeData: SfDataPagerThemeData()
         ),
         child: SfDataPager(),
       ),
     )
  );
}

Implementation

final SfDataPagerThemeData dataPagerThemeData;