- override
Describes the part of the user interface represented by this widget.
The framework calls this method when this widget is inserted into the
tree in a given BuildContext
and when the dependencies of this widget
change (e.g., an InheritedWidget
referenced by this widget changes).
The framework replaces the subtree below this widget with the widget
returned by this method, either by updating the existing subtree or by
removing the subtree and inflating a new subtree, depending on whether the
widget returned by this method can update the root of the existing
subtree, as determined by calling Widget.canUpdate
.
Typically implementations return a newly created constellation of widgets
that are configured with information from this widget's constructor and
from the given BuildContext
.
The given BuildContext
contains information about the location in the
tree at which this widget is being built. For example, the context
provides the set of inherited widgets for this location in the tree. A
given widget might be with multiple different BuildContext
arguments
over time if the widget is moved around the tree or if the widget is
inserted into the tree in multiple places at once.
The implementation of this method must only depend on:
- the fields of the widget, which themselves must not change over time, and
- any ambient state obtained from the
context
usingBuildContext.inheritFromWidgetOfExactType
.
If a widget's build
method is to depend on anything else, use a
StatefulWidget
instead.
Source
@override Widget build(BuildContext context) { final ThemeData themeData = Theme.of(context); final int year = displayedMonth.year; final int month = displayedMonth.month; // Dart's Date time constructor is very forgiving and will understand // month 13 as January of the next year. :) final int daysInMonth = new DateTime(year, month + 1).difference(new DateTime(year, month)).inDays; // This assumes a start day of SUNDAY, but could be changed. final int firstWeekday = new DateTime(year, month).weekday % 7; final List<Widget> labels = <Widget>[]; labels.addAll(_getDayHeaders(themeData.textTheme.caption)); for (int i = 0; true; ++i) { final int day = i - firstWeekday + 1; if (day > daysInMonth) break; if (day < 1) { labels.add(new Container()); } else { BoxDecoration decoration; TextStyle itemStyle = themeData.textTheme.body1; if (selectedDate.year == year && selectedDate.month == month && selectedDate.day == day) { // The selected day gets a circle background highlight, and a contrasting text color. itemStyle = themeData.accentTextTheme.body2; decoration = new BoxDecoration( backgroundColor: themeData.accentColor, shape: BoxShape.circle ); } else if (currentDate.year == year && currentDate.month == month && currentDate.day == day) { // The current day gets a different text color. itemStyle = themeData.textTheme.body2.copyWith(color: themeData.accentColor); } labels.add(new GestureDetector( behavior: HitTestBehavior.opaque, onTap: () { DateTime result = new DateTime(year, month, day); onChanged(result); }, child: new Container( decoration: decoration, child: new Center( child: new Text(day.toString(), style: itemStyle) ) ) )); } } return new Padding( padding: const EdgeInsets.symmetric(horizontal: 8.0), child: new Column( children: <Widget>[ new Container( height: _kDayPickerRowHeight, child: new Center( child: new Text(new DateFormat('yMMMM').format(displayedMonth), style: themeData.textTheme.subhead ) ) ), new Flexible( fit: FlexFit.loose, child: new CustomGrid( delegate: _kDayPickerGridDelegate, children: labels ) ) ] ) ); }