build method

  1. @override
Widget build(
  1. BuildContext context
)
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). This method can potentially be called in every frame and should not have any side effects beyond building a widget.

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 built 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:

If a widget's build method is to depend on anything else, use a StatefulWidget instead.

See also:

  • StatelessWidget, which contains the discussion on performance considerations.

Implementation

@override
Widget build(BuildContext context) {
  final themeData = Theme.of(context);
  final localizations = MaterialLocalizations.of(context);
  final year = displayedMonth.year;
  final month = displayedMonth.month;
  final mDay = displayedMonth.day;

  final getPearData = SolarDate.sDate(gregorian: displayedMonth.toString());
  final selectedPersianDate =
      SolarDate.sDate(gregorian: selectedDate.toString());

  final currentPDate = SolarDate.sDate(gregorian: currentDate.toString());

  final daysInMonth = getDaysInMonth(year, month, isPersian);
  final pDay = _digits(mDay, 2);
  final gMonth = _digits(month, 2);

  final parseP = date.parse('$year-$gMonth-$pDay');
  final stgData = date.solarToGregorian(parseP[0], parseP[1], 01);

  final pMonth = _digits(stgData[1], 2);

  final pDate =
      SolarDate.sDate(gregorian: '${stgData[0]}-$pMonth-${stgData[2]}');

  final firstDayOffset = isPersian
      ? dayShort.indexOf(pDate.weekdayName)
      : _computeFirstDayOffset(year, month, mDay, localizations);
  final labels = <Widget>[
    ..._getDayHeaders(themeData.textTheme.bodySmall, localizations),
  ];
  // ignore: literal_only_boolean_expressions
  for (var i = 0; true; i += 1) {
    // 1-based day of month, e.g. 1-31 for January, and 1-29 for February on
    // a leap year.
    final day = i - firstDayOffset + 1;
    if (day > daysInMonth) {
      break;
    }
    if (day < 1) {
      labels.add(Container());
    } else {
      final pDay = _digits(day, 2);
      final jtgData = Gregorian.fromJalali(
          Jalali(getPearData.year!, getPearData.month!, int.parse(pDay)));

      final dayToBuild = isPersian
          ? DateTime(jtgData.year, jtgData.month, jtgData.day)
          : DateTime(year, month, day);
      final disabled = dayToBuild.isAfter(lastDate) ||
          dayToBuild.isBefore(firstDate) ||
          (selectableDayPredicate != null &&
              !selectableDayPredicate!(dayToBuild));

      BoxDecoration? decoration;
      var itemStyle = themeData.textTheme.bodyMedium;

      final isSelectedDay = !isPersian
          ? (selectedDate.year == year &&
              selectedDate.month == month &&
              selectedDate.day == day)
          : (selectedPersianDate.year == getPearData.year &&
              selectedPersianDate.month == getPearData.month &&
              selectedPersianDate.day == day);
      if (isSelectedDay) {
        // The selected day gets a circle background highlight, and a contrasting text color.
        itemStyle = themeData.textTheme.bodyLarge?.copyWith(
          color: themeData.colorScheme.onSecondary,
        );
        decoration = BoxDecoration(
          color: themeData.colorScheme.secondary,
          shape: BoxShape.circle,
        );
      } else if (disabled) {
        itemStyle = themeData.textTheme.bodyMedium!
            .copyWith(color: themeData.disabledColor);
      } else {
        if ((isPersian &&
                currentDate.year == year &&
                currentDate.month == month &&
                currentDate.day == day) ||
            (isPersian &&
                currentPDate.year == getPearData.year &&
                currentPDate.month == getPearData.month &&
                currentPDate.day == day)) {
          // The current day gets a different text color.
          itemStyle = themeData.textTheme.bodyLarge
              ?.copyWith(color: themeData.colorScheme.secondary);
        }
      }

      Widget dayWidget = Container(
        decoration: decoration,
        child: Center(
          child: Semantics(
            // We want the day of month to be spoken first irrespective of the
            // locale-specific preferences or TextDirection. This is because
            // an accessibility user is more likely to be interested in the
            // day of month before the rest of the date, as they are looking
            // for the day of month. To do that we prepend day of month to the
            // formatted full date.
            label:
                '${localizations.formatDecimal(day)}, ${localizations.formatFullDate(dayToBuild)}',
            selected: isSelectedDay,
            sortKey: OrdinalSortKey(day.toDouble()),
            child: ExcludeSemantics(
              child: Text(localizations.formatDecimal(day), style: itemStyle),
            ),
          ),
        ),
      );

      if (!disabled) {
        dayWidget = GestureDetector(
          behavior: HitTestBehavior.opaque,
          onTap: () {
            onChanged(dayToBuild);
          },
          dragStartBehavior: dragStartBehavior,
          child: dayWidget,
        );
      }

      labels.add(dayWidget);
    }
  }

  return Padding(
    padding: const EdgeInsets.symmetric(horizontal: 8),
    child: Column(
      children: <Widget>[
        Container(
          height: _kDayPickerRowHeight,
          child: Center(
            child: ExcludeSemantics(
              child: Text(
                isPersian
                    ? '${pDate.monthName}  ${pDate.year}'
                    : localizations.formatMonthYear(displayedMonth),
                style: themeData.textTheme.titleMedium,
              ),
            ),
          ),
        ),
        Flexible(
          child: GridView.custom(
            gridDelegate: _kDayPickerGridDelegate,
            childrenDelegate:
                SliverChildListDelegate(labels, addRepaintBoundaries: false),
            padding: EdgeInsets.zero,
          ),
        ),
      ],
    ),
  );
}