mirror of
https://github.com/flutter/flutter.git
synced 2026-02-20 02:29:02 +08:00
Add missing expansionTileTheme theme copyWith test (#100165)
This commit is contained in:
parent
63ff7a199b
commit
1cd4eebf47
@ -612,6 +612,7 @@ void main() {
|
||||
sliderTheme: otherTheme.sliderTheme,
|
||||
tabBarTheme: otherTheme.tabBarTheme,
|
||||
tooltipTheme: otherTheme.tooltipTheme,
|
||||
expansionTileTheme: otherTheme.expansionTileTheme,
|
||||
cardTheme: otherTheme.cardTheme,
|
||||
chipTheme: otherTheme.chipTheme,
|
||||
platform: otherTheme.platform,
|
||||
@ -689,6 +690,7 @@ void main() {
|
||||
expect(themeDataCopy.sliderTheme, equals(otherTheme.sliderTheme));
|
||||
expect(themeDataCopy.tabBarTheme, equals(otherTheme.tabBarTheme));
|
||||
expect(themeDataCopy.tooltipTheme, equals(otherTheme.tooltipTheme));
|
||||
expect(themeDataCopy.expansionTileTheme, equals(otherTheme.expansionTileTheme));
|
||||
expect(themeDataCopy.cardTheme, equals(otherTheme.cardTheme));
|
||||
expect(themeDataCopy.chipTheme, equals(otherTheme.chipTheme));
|
||||
expect(themeDataCopy.platform, equals(otherTheme.platform));
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user