mirror of
https://github.com/flutter/flutter.git
synced 2026-01-21 05:04:42 +08:00
Follow up https://github.com/flutter/flutter/pull/175573 Migrate the remaining files from `MaterialStateMouseCursor ` to `WidgetStateMouseCursor `. This PR only focus on `WidgetStateColor`. - This minimizes conflicts and reduces the size of the PR for easier reviews and follow up - I'll work on the other elements of `packages/flutter/lib/src/material/material_state.dart` into other PRs ## Pre-launch Checklist - [x] I read the [Contributor Guide] and followed the process outlined there for submitting PRs. - [x] I read the [Tree Hygiene] wiki page, which explains my responsibilities. - [x] I read and followed the [Flutter Style Guide], including [Features we expect every widget to implement]. - [x] I signed the [CLA]. - [ ] I listed at least one issue that this PR fixes in the description above. - [x] I updated/added relevant documentation (doc comments with `///`). - [x] I added new tests to check the change I am making, or this PR is [test-exempt]. - [x] I followed the [breaking change policy] and added [Data Driven Fixes] where supported. - [x] 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
239 lines
8.6 KiB
Dart
239 lines
8.6 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 SwitchTemplate extends TokenTemplate {
|
|
const SwitchTemplate(
|
|
super.blockName,
|
|
super.fileName,
|
|
super.tokens, {
|
|
super.colorSchemePrefix = '_colors.',
|
|
});
|
|
|
|
@override
|
|
String generate() =>
|
|
'''
|
|
class _${blockName}DefaultsM3 extends SwitchThemeData {
|
|
_${blockName}DefaultsM3(this.context);
|
|
|
|
final BuildContext context;
|
|
late final ColorScheme _colors = Theme.of(context).colorScheme;
|
|
|
|
@override
|
|
WidgetStateProperty<Color> get thumbColor {
|
|
return WidgetStateProperty.resolveWith((Set<WidgetState> states) {
|
|
if (states.contains(WidgetState.disabled)) {
|
|
if (states.contains(WidgetState.selected)) {
|
|
return ${componentColor('md.comp.switch.disabled.selected.handle')};
|
|
}
|
|
return ${componentColor('md.comp.switch.disabled.unselected.handle')};
|
|
}
|
|
if (states.contains(WidgetState.selected)) {
|
|
if (states.contains(WidgetState.pressed)) {
|
|
return ${componentColor('md.comp.switch.selected.pressed.handle')};
|
|
}
|
|
if (states.contains(WidgetState.hovered)) {
|
|
return ${componentColor('md.comp.switch.selected.hover.handle')};
|
|
}
|
|
if (states.contains(WidgetState.focused)) {
|
|
return ${componentColor('md.comp.switch.selected.focus.handle')};
|
|
}
|
|
return ${componentColor('md.comp.switch.selected.handle')};
|
|
}
|
|
if (states.contains(WidgetState.pressed)) {
|
|
return ${componentColor('md.comp.switch.unselected.pressed.handle')};
|
|
}
|
|
if (states.contains(WidgetState.hovered)) {
|
|
return ${componentColor('md.comp.switch.unselected.hover.handle')};
|
|
}
|
|
if (states.contains(WidgetState.focused)) {
|
|
return ${componentColor('md.comp.switch.unselected.focus.handle')};
|
|
}
|
|
return ${componentColor('md.comp.switch.unselected.handle')};
|
|
});
|
|
}
|
|
|
|
@override
|
|
WidgetStateProperty<Color> get trackColor {
|
|
return WidgetStateProperty.resolveWith((Set<WidgetState> states) {
|
|
if (states.contains(WidgetState.disabled)) {
|
|
if (states.contains(WidgetState.selected)) {
|
|
return ${componentColor('md.comp.switch.disabled.selected.track')}.withOpacity(${opacity('md.comp.switch.disabled.track.opacity')});
|
|
}
|
|
return ${componentColor('md.comp.switch.disabled.unselected.track')}.withOpacity(${opacity('md.comp.switch.disabled.track.opacity')});
|
|
}
|
|
if (states.contains(WidgetState.selected)) {
|
|
if (states.contains(WidgetState.pressed)) {
|
|
return ${componentColor('md.comp.switch.selected.pressed.track')};
|
|
}
|
|
if (states.contains(WidgetState.hovered)) {
|
|
return ${componentColor('md.comp.switch.selected.hover.track')};
|
|
}
|
|
if (states.contains(WidgetState.focused)) {
|
|
return ${componentColor('md.comp.switch.selected.focus.track')};
|
|
}
|
|
return ${componentColor('md.comp.switch.selected.track')};
|
|
}
|
|
if (states.contains(WidgetState.pressed)) {
|
|
return ${componentColor('md.comp.switch.unselected.pressed.track')};
|
|
}
|
|
if (states.contains(WidgetState.hovered)) {
|
|
return ${componentColor('md.comp.switch.unselected.hover.track')};
|
|
}
|
|
if (states.contains(WidgetState.focused)) {
|
|
return ${componentColor('md.comp.switch.unselected.focus.track')};
|
|
}
|
|
return ${componentColor('md.comp.switch.unselected.track')};
|
|
});
|
|
}
|
|
|
|
@override
|
|
WidgetStateProperty<Color?> get trackOutlineColor {
|
|
return WidgetStateProperty.resolveWith((Set<WidgetState> states) {
|
|
if (states.contains(WidgetState.selected)) {
|
|
return Colors.transparent;
|
|
}
|
|
if (states.contains(WidgetState.disabled)) {
|
|
return ${componentColor('md.comp.switch.disabled.unselected.track.outline')}.withOpacity(${opacity('md.comp.switch.disabled.track.opacity')});
|
|
}
|
|
return ${componentColor('md.comp.switch.unselected.track.outline')};
|
|
});
|
|
}
|
|
|
|
@override
|
|
WidgetStateProperty<Color?> get overlayColor {
|
|
return WidgetStateProperty.resolveWith((Set<WidgetState> states) {
|
|
if (states.contains(WidgetState.selected)) {
|
|
if (states.contains(WidgetState.pressed)) {
|
|
return ${componentColor('md.comp.switch.selected.pressed.state-layer')};
|
|
}
|
|
if (states.contains(WidgetState.hovered)) {
|
|
return ${componentColor('md.comp.switch.selected.hover.state-layer')};
|
|
}
|
|
if (states.contains(WidgetState.focused)) {
|
|
return ${componentColor('md.comp.switch.selected.focus.state-layer')};
|
|
}
|
|
return null;
|
|
}
|
|
if (states.contains(WidgetState.pressed)) {
|
|
return ${componentColor('md.comp.switch.unselected.pressed.state-layer')};
|
|
}
|
|
if (states.contains(WidgetState.hovered)) {
|
|
return ${componentColor('md.comp.switch.unselected.hover.state-layer')};
|
|
}
|
|
if (states.contains(WidgetState.focused)) {
|
|
return ${componentColor('md.comp.switch.unselected.focus.state-layer')};
|
|
}
|
|
return null;
|
|
});
|
|
}
|
|
|
|
@override
|
|
WidgetStateProperty<MouseCursor> get mouseCursor {
|
|
return WidgetStateProperty.resolveWith((Set<WidgetState> states)
|
|
=> WidgetStateMouseCursor.clickable.resolve(states));
|
|
}
|
|
|
|
@override
|
|
MaterialStatePropertyAll<double> get trackOutlineWidth => const MaterialStatePropertyAll<double>(${getToken('md.comp.switch.track.outline.width')});
|
|
|
|
@override
|
|
double get splashRadius => ${getToken('md.comp.switch.state-layer.size')} / 2;
|
|
|
|
@override
|
|
EdgeInsetsGeometry? get padding => const EdgeInsets.symmetric(horizontal: 4);
|
|
}
|
|
|
|
class _SwitchConfigM3 with _SwitchConfig {
|
|
_SwitchConfigM3(this.context)
|
|
: _colors = Theme.of(context).colorScheme;
|
|
|
|
BuildContext context;
|
|
final ColorScheme _colors;
|
|
|
|
static const double iconSize = ${getToken('md.comp.switch.unselected.icon.size')};
|
|
|
|
@override
|
|
double get activeThumbRadius => ${getToken('md.comp.switch.selected.handle.width')} / 2;
|
|
|
|
@override
|
|
WidgetStateProperty<Color> get iconColor {
|
|
return WidgetStateProperty.resolveWith((Set<WidgetState> states) {
|
|
if (states.contains(WidgetState.disabled)) {
|
|
if (states.contains(WidgetState.selected)) {
|
|
return ${componentColor('md.comp.switch.disabled.selected.icon')};
|
|
}
|
|
return ${componentColor('md.comp.switch.disabled.unselected.icon')};
|
|
}
|
|
if (states.contains(WidgetState.selected)) {
|
|
if (states.contains(WidgetState.pressed)) {
|
|
return ${componentColor('md.comp.switch.selected.pressed.icon')};
|
|
}
|
|
if (states.contains(WidgetState.hovered)) {
|
|
return ${componentColor('md.comp.switch.selected.hover.icon')};
|
|
}
|
|
if (states.contains(WidgetState.focused)) {
|
|
return ${componentColor('md.comp.switch.selected.focus.icon')};
|
|
}
|
|
return ${componentColor('md.comp.switch.selected.icon')};
|
|
}
|
|
if (states.contains(WidgetState.pressed)) {
|
|
return ${componentColor('md.comp.switch.unselected.pressed.icon')};
|
|
}
|
|
if (states.contains(WidgetState.hovered)) {
|
|
return ${componentColor('md.comp.switch.unselected.hover.icon')};
|
|
}
|
|
if (states.contains(WidgetState.focused)) {
|
|
return ${componentColor('md.comp.switch.unselected.focus.icon')};
|
|
}
|
|
return ${componentColor('md.comp.switch.unselected.icon')};
|
|
});
|
|
}
|
|
|
|
@override
|
|
double get inactiveThumbRadius => ${getToken('md.comp.switch.unselected.handle.width')} / 2;
|
|
|
|
@override
|
|
double get pressedThumbRadius => ${getToken('md.comp.switch.pressed.handle.width')} / 2;
|
|
|
|
@override
|
|
double get switchHeight => switchMinSize.height + 8.0;
|
|
|
|
@override
|
|
double get switchHeightCollapsed => switchMinSize.height;
|
|
|
|
@override
|
|
double get switchWidth => 52.0;
|
|
|
|
@override
|
|
double get thumbRadiusWithIcon => ${getToken('md.comp.switch.with-icon.handle.width')} / 2;
|
|
|
|
@override
|
|
List<BoxShadow>? get thumbShadow => kElevationToShadow[0];
|
|
|
|
@override
|
|
double get trackHeight => ${getToken('md.comp.switch.track.height')};
|
|
|
|
@override
|
|
double get trackWidth => ${getToken('md.comp.switch.track.width')};
|
|
|
|
// The thumb size at the middle of the track. Hand coded default based on the animation specs.
|
|
@override
|
|
Size get transitionalThumbSize => const Size(34, 22);
|
|
|
|
// Hand coded default based on the animation specs.
|
|
@override
|
|
int get toggleDuration => 300;
|
|
|
|
// Hand coded default based on the animation specs.
|
|
@override
|
|
double? get thumbOffset => null;
|
|
|
|
@override
|
|
Size get switchMinSize => const Size(kMinInteractiveDimension, kMinInteractiveDimension - 8.0);
|
|
}
|
|
''';
|
|
}
|