flutter/dev/tools
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
..
bin Reland "Update gradle lockfiles template (#140115)" (#143081) 2024-02-08 16:22:15 +00:00
gen_defaults Update hourMinuteTextStyle defaults for Material 3 Time Picker (#143749) 2024-02-21 10:39:35 +00:00
gen_keycodes Upgrade leak_tracker. (#143236) 2024-02-09 14:41:22 -08:00
localization Fixed few typos (#141543) 2024-01-16 21:40:08 +00:00
test provide command to FakeCommand::onRun (#142206) 2024-01-25 07:51:25 +00:00
vitool Upgrade leak_tracker. (#143236) 2024-02-09 14:41:22 -08:00
.gitignore [flutter_conductor] update dev/tools with release tool (#69791) 2020-11-06 11:14:04 -08:00
create_api_docs.dart Fixed a lot of typos (#141431) 2024-01-12 22:10:25 +00:00
dartdoc_checker.dart update analytics in generate api docs site to use new UA4 (#136497) 2023-10-16 19:47:48 +00:00
examples_smoke_test.dart Use flutter pub get instead of dart pub get in create_api_docs.dart (#133493) 2023-08-28 16:12:16 -07:00
find_engine_commit.dart begin migrating //flutter/dev/tools to null-safety (#80834) 2021-04-23 20:24:03 -07:00
mega_gallery.dart Disable deprecation warnings for mega_gallery (#143466) 2024-02-14 20:31:08 +00:00
pubspec.yaml Upgrade leak_tracker. (#143236) 2024-02-09 14:41:22 -08:00
repackage_gradle_wrapper.sh Point to a new artifacts location. (#70673) 2021-02-04 18:44:47 -08:00
update_icons.dart Improve handling of certain icons in RTL (#130979) 2023-07-21 19:07:39 +02:00