Unverified Commit 1cd4eebf authored by Taha Tesser's avatar Taha Tesser Committed by GitHub

Add missing `expansionTileTheme` theme copyWith test (#100165)

parent 63ff7a19
......@@ -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));
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment