flutter/dev
Taha Tesser 3403ca413f
Update hourMinuteTextStyle defaults for Material 3 Time Picker (#143749)
fixes [`hourMinuteTextStyle` Material 3 default doesn't match the specs](https://github.com/flutter/flutter/issues/143748)

This updates `hourMinuteTextStyle` defaults to match Material 3 specs. `hourMinuteTextStyle` should use different font style for different entry modes based on the specs.

### Specs
![Screenshot 2024-02-20 at 15 06 40](https://github.com/flutter/flutter/assets/48603081/5198a5da-314d-401e-8d7f-d4a68b86e43c)
![Screenshot 2024-02-20 at 15 07 22](https://github.com/flutter/flutter/assets/48603081/79436ce4-fef6-480a-bc43-b628497e860f)

### Before
```dart
 return _textTheme.displayMedium!.copyWith(color: _hourMinuteTextColor.resolve(states));
```
### After 
```dart
      return entryMode == TimePickerEntryMode.dial
        ? _textTheme.displayLarge!.copyWith(color: _hourMinuteTextColor.resolve(states))
        : _textTheme.displayMedium!.copyWith(color: _hourMinuteTextColor.resolve(states));
```
2024-02-21 10:39:35 +00:00
..
a11y_assessments Format all kotlin according to ktlint (#143390) 2024-02-14 17:58:18 +00:00
automated_tests Upgrade leak_tracker. (#143236) 2024-02-09 14:41:22 -08:00
benchmarks Reverts "Add UI Benchmarks (#143542)" (#143798) 2024-02-20 23:38:19 +00:00
bots Fix implementation imports outside of lib (#143594) 2024-02-16 22:38:10 +00:00
conductor Upgrade leak_tracker. (#143236) 2024-02-09 14:41:22 -08:00
customer_testing Upgrade leak_tracker. (#143236) 2024-02-09 14:41:22 -08:00
devicelab Reverts "Add UI Benchmarks (#143542)" (#143798) 2024-02-20 23:38:19 +00:00
docs Update links and surrounding text for new main-api docs (#138602) 2023-11-17 22:27:53 +00:00
forbidden_from_release_tests Upgrade leak_tracker. (#143236) 2024-02-09 14:41:22 -08:00
integration_tests Delete local.properties that shouldn't have been pushed (#143774) 2024-02-20 11:55:51 -08:00
manual_tests Format all kotlin according to ktlint (#143390) 2024-02-14 17:58:18 +00:00
missing_dependency_tests Enable private field promotion for dev (#134480) 2023-09-12 18:29:00 +00:00
snippets/config Remove null-safety argument from DartPad doc samples (#127345) 2023-05-23 00:10:11 +00:00
tools Update hourMinuteTextStyle defaults for Material 3 Time Picker (#143749) 2024-02-21 10:39:35 +00:00
tracing_tests Format all kotlin according to ktlint (#143390) 2024-02-14 17:58:18 +00:00
analysis_options.yaml Enable more lints (#91642) 2021-10-14 22:03:03 -07:00
README.md Migrate to .ci.yaml (#82960) 2021-05-19 20:09:46 -07:00

This directory contains tools and resources that the Flutter team uses during the development of the framework. The tools in this directory should not be necessary for developing Flutter applications, though of course, they may be interesting if you are curious.

The tests in this directory are run in the framework_tests_misc-* shards.