mirror of
https://github.com/flutter/flutter.git
synced 2026-02-20 02:29:02 +08:00
WIP Commits separated as follows: - Update lints in analysis_options files - Run `dart fix --apply` - Clean up leftover analysis issues - Run `dart format .` in the right places. Local analysis and testing passes. Checking CI now. Part of https://github.com/flutter/flutter/issues/178827 - Adoption of flutter_lints in examples/api coming in a separate change (cc @loic-sharma) ## Pre-launch Checklist - [ ] I read the [Contributor Guide] and followed the process outlined there for submitting PRs. - [ ] I read the [Tree Hygiene] wiki page, which explains my responsibilities. - [ ] I read and followed the [Flutter Style Guide], including [Features we expect every widget to implement]. - [ ] I signed the [CLA]. - [ ] I listed at least one issue that this PR fixes in the description above. - [ ] I updated/added relevant documentation (doc comments with `///`). - [ ] I added new tests to check the change I am making, or this PR is [test-exempt]. - [ ] I followed the [breaking change policy] and added [Data Driven Fixes] where supported. - [ ] All existing and new tests are passing. If you need help, consider asking for advice on the #hackers-new channel on [Discord]. **Note**: The Flutter team is currently trialing the use of [Gemini Code Assist for GitHub](https://developers.google.com/gemini-code-assist/docs/review-github-code). Comments from the `gemini-code-assist` bot should not be taken as authoritative feedback from the Flutter team. If you find its comments useful you can update your code accordingly, but if you are unsure or disagree with the feedback, please feel free to wait for a Flutter team member's review for guidance on which automated comments should be addressed. <!-- Links --> [Contributor Guide]: https://github.com/flutter/flutter/blob/main/docs/contributing/Tree-hygiene.md#overview [Tree Hygiene]: https://github.com/flutter/flutter/blob/main/docs/contributing/Tree-hygiene.md [test-exempt]: https://github.com/flutter/flutter/blob/main/docs/contributing/Tree-hygiene.md#tests [Flutter Style Guide]: https://github.com/flutter/flutter/blob/main/docs/contributing/Style-guide-for-Flutter-repo.md [Features we expect every widget to implement]: https://github.com/flutter/flutter/blob/main/docs/contributing/Style-guide-for-Flutter-repo.md#features-we-expect-every-widget-to-implement [CLA]: https://cla.developers.google.com/ [flutter/tests]: https://github.com/flutter/tests [breaking change policy]: https://github.com/flutter/flutter/blob/main/docs/contributing/Tree-hygiene.md#handling-breaking-changes [Discord]: https://github.com/flutter/flutter/blob/main/docs/contributing/Chat.md [Data Driven Fixes]: https://github.com/flutter/flutter/blob/main/docs/contributing/Data-driven-Fixes.md
363 lines
13 KiB
Dart
363 lines
13 KiB
Dart
// Copyright 2014 The Flutter Authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
// found in the LICENSE file.
|
|
|
|
import 'template.dart';
|
|
|
|
class TimePickerTemplate extends TokenTemplate {
|
|
const TimePickerTemplate(
|
|
super.blockName,
|
|
super.fileName,
|
|
super.tokens, {
|
|
super.colorSchemePrefix = '_colors.',
|
|
super.textThemePrefix = '_textTheme.',
|
|
});
|
|
|
|
static const String tokenGroup = 'md.comp.time-picker';
|
|
static const String hourMinuteComponent = '$tokenGroup.time-selector';
|
|
static const String dayPeriodComponent = '$tokenGroup.period-selector';
|
|
static const String dialComponent = '$tokenGroup.clock-dial';
|
|
static const String variant = '';
|
|
|
|
@override
|
|
String generate() =>
|
|
'''
|
|
class _${blockName}DefaultsM3 extends _TimePickerDefaults {
|
|
_${blockName}DefaultsM3(this.context, { this.entryMode = TimePickerEntryMode.dial });
|
|
|
|
final BuildContext context;
|
|
final TimePickerEntryMode entryMode;
|
|
|
|
late final ColorScheme _colors = Theme.of(context).colorScheme;
|
|
late final TextTheme _textTheme = Theme.of(context).textTheme;
|
|
|
|
@override
|
|
Color get backgroundColor {
|
|
return ${componentColor("$tokenGroup.container")};
|
|
}
|
|
|
|
@override
|
|
ButtonStyle get cancelButtonStyle {
|
|
return TextButton.styleFrom();
|
|
}
|
|
|
|
@override
|
|
ButtonStyle get confirmButtonStyle {
|
|
return TextButton.styleFrom();
|
|
}
|
|
|
|
@override
|
|
BorderSide get dayPeriodBorderSide {
|
|
return ${border('$dayPeriodComponent.outline')};
|
|
}
|
|
|
|
@override
|
|
Color get dayPeriodColor {
|
|
return WidgetStateColor.resolveWith((Set<WidgetState> states) {
|
|
if (states.contains(WidgetState.selected)) {
|
|
return ${componentColor("$dayPeriodComponent.selected.container")};
|
|
}
|
|
// The unselected day period should match the overall picker dialog color.
|
|
// Making it transparent enables that without being redundant and allows
|
|
// the optional elevation overlay for dark mode to be visible.
|
|
return Colors.transparent;
|
|
});
|
|
}
|
|
|
|
@override
|
|
OutlinedBorder get dayPeriodShape {
|
|
return ${shape("$dayPeriodComponent.container")}.copyWith(side: dayPeriodBorderSide);
|
|
}
|
|
|
|
@override
|
|
Size get dayPeriodPortraitSize {
|
|
return ${size('$dayPeriodComponent.vertical.container')};
|
|
}
|
|
|
|
@override
|
|
Size get dayPeriodLandscapeSize {
|
|
return ${size('$dayPeriodComponent.horizontal.container')};
|
|
}
|
|
|
|
@override
|
|
Size get dayPeriodInputSize {
|
|
// Input size is eight pixels smaller than the portrait size in the spec,
|
|
// but there's not token for it yet.
|
|
return Size(dayPeriodPortraitSize.width, dayPeriodPortraitSize.height - 8);
|
|
}
|
|
|
|
@override
|
|
Color get dayPeriodTextColor {
|
|
return WidgetStateColor.resolveWith((Set<WidgetState> states) {
|
|
if (states.contains(WidgetState.selected)) {
|
|
if (states.contains(WidgetState.focused)) {
|
|
return ${componentColor("$dayPeriodComponent.selected.focus.label-text")};
|
|
}
|
|
if (states.contains(WidgetState.hovered)) {
|
|
return ${componentColor("$dayPeriodComponent.selected.hover.label-text")};
|
|
}
|
|
if (states.contains(WidgetState.pressed)) {
|
|
return ${componentColor("$dayPeriodComponent.selected.pressed.label-text")};
|
|
}
|
|
return ${componentColor("$dayPeriodComponent.selected.label-text")};
|
|
}
|
|
if (states.contains(WidgetState.focused)) {
|
|
return ${componentColor("$dayPeriodComponent.unselected.focus.label-text")};
|
|
}
|
|
if (states.contains(WidgetState.hovered)) {
|
|
return ${componentColor("$dayPeriodComponent.unselected.hover.label-text")};
|
|
}
|
|
if (states.contains(WidgetState.pressed)) {
|
|
return ${componentColor("$dayPeriodComponent.unselected.pressed.label-text")};
|
|
}
|
|
return ${componentColor("$dayPeriodComponent.unselected.label-text")};
|
|
});
|
|
}
|
|
|
|
@override
|
|
TextStyle get dayPeriodTextStyle {
|
|
return ${textStyle("$dayPeriodComponent.label-text")}!.copyWith(color: dayPeriodTextColor);
|
|
}
|
|
|
|
@override
|
|
Color get dialBackgroundColor {
|
|
return ${componentColor(dialComponent)};
|
|
}
|
|
|
|
@override
|
|
Color get dialHandColor {
|
|
return ${componentColor('$dialComponent.selector.handle.container')};
|
|
}
|
|
|
|
@override
|
|
Size get dialSize {
|
|
return ${size("$dialComponent.container")};
|
|
}
|
|
|
|
@override
|
|
double get handWidth {
|
|
return ${size("$dialComponent.selector.track.container")}.width;
|
|
}
|
|
|
|
@override
|
|
double get dotRadius {
|
|
return ${size("$dialComponent.selector.handle.container")}.width / 2;
|
|
}
|
|
|
|
@override
|
|
double get centerRadius {
|
|
return ${size("$dialComponent.selector.center.container")}.width / 2;
|
|
}
|
|
|
|
@override
|
|
Color get dialTextColor {
|
|
return WidgetStateColor.resolveWith((Set<WidgetState> states) {
|
|
if (states.contains(WidgetState.selected)) {
|
|
return ${componentColor('$dialComponent.selected.label-text')};
|
|
}
|
|
return ${componentColor('$dialComponent.unselected.label-text')};
|
|
});
|
|
}
|
|
|
|
@override
|
|
TextStyle get dialTextStyle {
|
|
return ${textStyle('$dialComponent.label-text')}!;
|
|
}
|
|
|
|
@override
|
|
double get elevation {
|
|
return ${elevation("$tokenGroup.container")};
|
|
}
|
|
|
|
@override
|
|
Color get entryModeIconColor {
|
|
return _colors.onSurface;
|
|
}
|
|
|
|
@override
|
|
TextStyle get helpTextStyle {
|
|
return WidgetStateTextStyle.resolveWith((Set<WidgetState> states) {
|
|
final TextStyle textStyle = ${textStyle('$tokenGroup.headline')}!;
|
|
return textStyle.copyWith(color: ${componentColor('$tokenGroup.headline')});
|
|
});
|
|
}
|
|
|
|
@override
|
|
EdgeInsetsGeometry get padding {
|
|
return const EdgeInsets.all(24);
|
|
}
|
|
|
|
@override
|
|
Color get hourMinuteColor {
|
|
return WidgetStateColor.resolveWith((Set<WidgetState> states) {
|
|
if (states.contains(WidgetState.selected)) {
|
|
Color overlayColor = ${componentColor('$hourMinuteComponent.selected.container')};
|
|
if (states.contains(WidgetState.pressed)) {
|
|
overlayColor = ${componentColor('$hourMinuteComponent.selected.pressed.state-layer')};
|
|
} else if (states.contains(WidgetState.hovered)) {
|
|
const hoverOpacity = ${opacity('$hourMinuteComponent.hover.state-layer.opacity')};
|
|
overlayColor = ${componentColor('$hourMinuteComponent.selected.hover.state-layer')}.withOpacity(hoverOpacity);
|
|
} else if (states.contains(WidgetState.focused)) {
|
|
const focusOpacity = ${opacity('$hourMinuteComponent.focus.state-layer.opacity')};
|
|
overlayColor = ${componentColor('$hourMinuteComponent.selected.focus.state-layer')}.withOpacity(focusOpacity);
|
|
}
|
|
return Color.alphaBlend(overlayColor, ${componentColor('$hourMinuteComponent.selected.container')});
|
|
} else {
|
|
Color overlayColor = ${componentColor('$hourMinuteComponent.unselected.container')};
|
|
if (states.contains(WidgetState.pressed)) {
|
|
overlayColor = ${componentColor('$hourMinuteComponent.unselected.pressed.state-layer')};
|
|
} else if (states.contains(WidgetState.hovered)) {
|
|
const hoverOpacity = ${opacity('$hourMinuteComponent.hover.state-layer.opacity')};
|
|
overlayColor = ${componentColor('$hourMinuteComponent.unselected.hover.state-layer')}.withOpacity(hoverOpacity);
|
|
} else if (states.contains(WidgetState.focused)) {
|
|
const focusOpacity = ${opacity('$hourMinuteComponent.focus.state-layer.opacity')};
|
|
overlayColor = ${componentColor('$hourMinuteComponent.unselected.focus.state-layer')}.withOpacity(focusOpacity);
|
|
}
|
|
return Color.alphaBlend(overlayColor, ${componentColor('$hourMinuteComponent.unselected.container')});
|
|
}
|
|
});
|
|
}
|
|
|
|
@override
|
|
ShapeBorder get hourMinuteShape {
|
|
return ${shape('$hourMinuteComponent.container')};
|
|
}
|
|
|
|
@override
|
|
Size get hourMinuteSize {
|
|
return ${size('$hourMinuteComponent.container')};
|
|
}
|
|
|
|
@override
|
|
Size get hourMinuteSize24Hour {
|
|
return Size(${size('$hourMinuteComponent.24h-vertical.container')}.width, hourMinuteSize.height);
|
|
}
|
|
|
|
@override
|
|
Size get hourMinuteInputSize {
|
|
// Input size is eight pixels smaller than the regular size in the spec, but
|
|
// there's not token for it yet.
|
|
return Size(hourMinuteSize.width, hourMinuteSize.height - 8);
|
|
}
|
|
|
|
@override
|
|
Size get hourMinuteInputSize24Hour {
|
|
// Input size is eight pixels smaller than the regular size in the spec, but
|
|
// there's not token for it yet.
|
|
return Size(hourMinuteSize24Hour.width, hourMinuteSize24Hour.height - 8);
|
|
}
|
|
|
|
@override
|
|
Color get hourMinuteTextColor {
|
|
return WidgetStateColor.resolveWith((Set<WidgetState> states) {
|
|
return _hourMinuteTextColor.resolve(states);
|
|
});
|
|
}
|
|
|
|
WidgetStateProperty<Color> get _hourMinuteTextColor {
|
|
return WidgetStateProperty.resolveWith((Set<WidgetState> states) {
|
|
if (states.contains(WidgetState.selected)) {
|
|
if (states.contains(WidgetState.pressed)) {
|
|
return ${componentColor("$hourMinuteComponent.selected.pressed.label-text")};
|
|
}
|
|
if (states.contains(WidgetState.hovered)) {
|
|
return ${componentColor("$hourMinuteComponent.selected.hover.label-text")};
|
|
}
|
|
if (states.contains(WidgetState.focused)) {
|
|
return ${componentColor("$hourMinuteComponent.selected.focus.label-text")};
|
|
}
|
|
return ${componentColor("$hourMinuteComponent.selected.label-text")};
|
|
} else {
|
|
// unselected
|
|
if (states.contains(WidgetState.pressed)) {
|
|
return ${componentColor("$hourMinuteComponent.unselected.pressed.label-text")};
|
|
}
|
|
if (states.contains(WidgetState.hovered)) {
|
|
return ${componentColor("$hourMinuteComponent.unselected.hover.label-text")};
|
|
}
|
|
if (states.contains(WidgetState.focused)) {
|
|
return ${componentColor("$hourMinuteComponent.unselected.focus.label-text")};
|
|
}
|
|
return ${componentColor("$hourMinuteComponent.unselected.label-text")};
|
|
}
|
|
});
|
|
}
|
|
|
|
@override
|
|
TextStyle get hourMinuteTextStyle {
|
|
return WidgetStateTextStyle.resolveWith((Set<WidgetState> states) {
|
|
// TODO(tahatesser): Update this when https://github.com/flutter/flutter/issues/131247 is fixed.
|
|
// This is using the correct text style from Material 3 spec.
|
|
// https://m3.material.io/components/time-pickers/specs#fd0b6939-edab-4058-82e1-93d163945215
|
|
return switch (entryMode) {
|
|
TimePickerEntryMode.dial || TimePickerEntryMode.dialOnly
|
|
=> _textTheme.displayLarge!.copyWith(color: _hourMinuteTextColor.resolve(states)),
|
|
TimePickerEntryMode.input || TimePickerEntryMode.inputOnly
|
|
=> _textTheme.displayMedium!.copyWith(color: _hourMinuteTextColor.resolve(states)),
|
|
};
|
|
});
|
|
}
|
|
|
|
@override
|
|
InputDecorationThemeData get inputDecorationTheme {
|
|
// This is NOT correct, but there's no token for
|
|
// 'time-input.container.shape', so this is using the radius from the shape
|
|
// for the hour/minute selector. It's a BorderRadiusGeometry, so we have to
|
|
// resolve it before we can use it.
|
|
final BorderRadius selectorRadius = ${shape('$hourMinuteComponent.container')}
|
|
.borderRadius
|
|
.resolve(Directionality.of(context));
|
|
return InputDecorationThemeData(
|
|
contentPadding: EdgeInsets.zero,
|
|
filled: true,
|
|
// This should be derived from a token, but there isn't one for 'time-input'.
|
|
fillColor: hourMinuteColor,
|
|
// This should be derived from a token, but there isn't one for 'time-input'.
|
|
focusColor: _colors.primaryContainer,
|
|
enabledBorder: OutlineInputBorder(
|
|
borderRadius: selectorRadius,
|
|
borderSide: const BorderSide(color: Colors.transparent),
|
|
),
|
|
errorBorder: OutlineInputBorder(
|
|
borderRadius: selectorRadius,
|
|
borderSide: BorderSide(color: _colors.error, width: 2),
|
|
),
|
|
focusedBorder: OutlineInputBorder(
|
|
borderRadius: selectorRadius,
|
|
borderSide: BorderSide(color: _colors.primary, width: 2),
|
|
),
|
|
focusedErrorBorder: OutlineInputBorder(
|
|
borderRadius: selectorRadius,
|
|
borderSide: BorderSide(color: _colors.error, width: 2),
|
|
),
|
|
hintStyle: hourMinuteTextStyle.copyWith(color: _colors.onSurface.withOpacity(0.36)),
|
|
// Prevent the error text from appearing.
|
|
// TODO(rami-a): Remove this workaround once
|
|
// https://github.com/flutter/flutter/issues/54104
|
|
// is fixed.
|
|
errorStyle: const TextStyle(fontSize: 0),
|
|
);
|
|
}
|
|
|
|
@override
|
|
ShapeBorder get shape {
|
|
return ${shape("$tokenGroup.container")};
|
|
}
|
|
|
|
@override
|
|
WidgetStateProperty<Color?>? get timeSelectorSeparatorColor {
|
|
// TODO(tahatesser): Update this when tokens are available.
|
|
// This is taken from https://m3.material.io/components/time-pickers/specs.
|
|
return MaterialStatePropertyAll<Color>(_colors.onSurface);
|
|
}
|
|
|
|
@override
|
|
WidgetStateProperty<TextStyle?>? get timeSelectorSeparatorTextStyle {
|
|
// TODO(tahatesser): Update this when tokens are available.
|
|
// This is taken from https://m3.material.io/components/time-pickers/specs.
|
|
return MaterialStatePropertyAll<TextStyle?>(_textTheme.displayLarge);
|
|
}
|
|
}
|
|
''';
|
|
}
|