Skip to content

Commit 38b10fb

Browse files
FLUT-6017-[feature][flutter]: API link has added
1 parent 8883c61 commit 38b10fb

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

Flutter/datagrid/paging.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -438,9 +438,9 @@ Widget build(BuildContext context) {
438438

439439
## Show dropdown button to choose rows per page
440440

441-
Show the dropdown button option to select a different number of rows per page by defining the `onRowPerPageChanged` callback. If it is null, no option will be provided to select different number of rows per page.
441+
Show the dropdown button option to select a different number of rows per page by defining the [onRowPerPageChanged](https://pub.dev/documentation/syncfusion_flutter_datagrid/latest/datagrid/SfDataPager/onRowsPerPageChanged.html) callback. If it is null, no option will be provided to select different number of rows per page.
442442

443-
You can use `availableRowsPerPage` property to define the list of numbers to be displayed in drop-down. The default value of `availableRowsPerPage` property is [10,15,20].
443+
You can use [availableRowsPerPage](https://pub.dev/documentation/syncfusion_flutter_datagrid/latest/datagrid/SfDataPager/availableRowsPerPage.html) property to define the list of numbers to be displayed in drop-down. The default value of `availableRowsPerPage` property is [10,15,20].
444444

445445
>**NOTE**
446446
You can view dropdown button option by horizontally scrolling the DataPager. The dropdown button option is not supported, if the [direction](https://pub.dev/documentation/syncfusion_flutter_datagrid/latest/datagrid/SfDataPager/direction.html) is vertical.

Flutter/datagrid/pull-to-refresh.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -175,9 +175,9 @@ import 'package:syncfusion_flutter_datagrid/datagrid.dart';
175175
Widget build(BuildContext context) {
176176
return Theme(
177177
data: ThemeData(
178-
accentColor: Colors.white,
179-
canvasColor: Colors.lightBlue,
180-
),
178+
canvasColor: Colors.lightBlue,
179+
colorScheme: const ColorScheme.light(
180+
primary: Colors.white, brightness: Brightness.light)),
181181
child: SfDataGrid(
182182
allowPullToRefresh: true,
183183
source: _employeeDataSource,

0 commit comments

Comments
 (0)