date_picker_keys.dart 477 B

12345678910111213141516171819
  1. import 'package:flutter/material.dart';
  2. /// Keys for some date picker's widgets.
  3. ///
  4. /// Useful for integration tests to find widgets.
  5. class DatePickerKeys {
  6. /// Key for the previous page icon widget.
  7. final Key previousPageIconKey;
  8. /// Key for the next page icon widget.
  9. final Key nextPageIconKey;
  10. /// Key for showing month.
  11. final Key selectedPeriodKeys;
  12. ///
  13. DatePickerKeys(
  14. this.previousPageIconKey, this.nextPageIconKey, this.selectedPeriodKeys);
  15. }