You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+2-9Lines changed: 2 additions & 9 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -3,17 +3,10 @@
3
3
In the flutter date range picker, you can navigate between the picker views. Switching between picker views has been achieved using the `view` property of DateRangePickerController and tapping the header of the picker views.
4
4
5
5
## Step 1:
6
-
In initState(), initialize the controller for date range picker.
6
+
Inside the state, initialize the controller for date range picker.
7
7
8
8
```xml
9
-
DateRangePickerController _controller;
10
-
11
-
@override
12
-
void initState() {
13
-
// TODO: implement initState
14
-
_controller = DateRangePickerController();
15
-
super.initState();
16
-
}
9
+
final DateRangePickerController _controller = DateRangePickerController();
0 commit comments