forked from flutter/packages
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Reland] Add Material 3 support for
TabBar
(#116283)
* Add Material 3 support for `TabBar` * M3 `TabBar` revert fix and tests
- Loading branch information
1 parent
ef99905
commit a522938
Showing
7 changed files
with
629 additions
and
72 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,73 @@ | ||
// 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 TabsTemplate extends TokenTemplate { | ||
const TabsTemplate(super.blockName, super.fileName, super.tokens, { | ||
super.colorSchemePrefix = '_colors.', | ||
super.textThemePrefix = '_textTheme.', | ||
}); | ||
|
||
@override | ||
String generate() => ''' | ||
class _${blockName}DefaultsM3 extends TabBarTheme { | ||
_${blockName}DefaultsM3(this.context) | ||
: super(indicatorSize: TabBarIndicatorSize.label); | ||
final BuildContext context; | ||
late final ColorScheme _colors = Theme.of(context).colorScheme; | ||
late final TextTheme _textTheme = Theme.of(context).textTheme; | ||
@override | ||
Color? get dividerColor => ${componentColor("md.comp.primary-navigation-tab.divider")}; | ||
@override | ||
Color? get indicatorColor => ${componentColor("md.comp.primary-navigation-tab.active-indicator")}; | ||
@override | ||
Color? get labelColor => ${componentColor("md.comp.primary-navigation-tab.with-label-text.active.label-text")}; | ||
@override | ||
TextStyle? get labelStyle => ${textStyle("md.comp.primary-navigation-tab.with-label-text.label-text")}; | ||
@override | ||
Color? get unselectedLabelColor => ${componentColor("md.comp.primary-navigation-tab.with-label-text.inactive.label-text")}; | ||
@override | ||
TextStyle? get unselectedLabelStyle => ${textStyle("md.comp.primary-navigation-tab.with-label-text.label-text")}; | ||
@override | ||
MaterialStateProperty<Color?> get overlayColor { | ||
return MaterialStateProperty.resolveWith((Set<MaterialState> states) { | ||
if (states.contains(MaterialState.selected)) { | ||
if (states.contains(MaterialState.hovered)) { | ||
return ${componentColor('md.comp.primary-navigation-tab.active.hover.state-layer')}; | ||
} | ||
if (states.contains(MaterialState.focused)) { | ||
return ${componentColor('md.comp.primary-navigation-tab.active.focus.state-layer')}; | ||
} | ||
if (states.contains(MaterialState.pressed)) { | ||
return ${componentColor('md.comp.primary-navigation-tab.active.pressed.state-layer')}; | ||
} | ||
return null; | ||
} | ||
if (states.contains(MaterialState.hovered)) { | ||
return ${componentColor('md.comp.primary-navigation-tab.inactive.hover.state-layer')}; | ||
} | ||
if (states.contains(MaterialState.focused)) { | ||
return ${componentColor('md.comp.primary-navigation-tab.inactive.focus.state-layer')}; | ||
} | ||
if (states.contains(MaterialState.pressed)) { | ||
return ${componentColor('md.comp.primary-navigation-tab.inactive.pressed.state-layer')}; | ||
} | ||
return null; | ||
}); | ||
} | ||
@override | ||
InteractiveInkFeatureFactory? get splashFactory => Theme.of(context).splashFactory; | ||
} | ||
'''; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.