testWidgets('Transparent material widget does not absorb hit test',(WidgetTestertester)async{
testWidgetsWithLeakTracking('Transparent material widget does not absorb hit test',(WidgetTestertester)async{
// This is a regression test for https://github.com/flutter/flutter/issues/58665.
// This is a regression test for https://github.com/flutter/flutter/issues/58665.
boolpressed=false;
boolpressed=false;
awaittester.pumpWidget(
awaittester.pumpWidget(
...
@@ -323,7 +324,7 @@ void main() {
...
@@ -323,7 +324,7 @@ void main() {
});
});
group('Surface Tint Overlay',(){
group('Surface Tint Overlay',(){
testWidgets('applyElevationOverlayColor does not effect anything with useMaterial3 set to true',(WidgetTestertester)async{
testWidgetsWithLeakTracking('applyElevationOverlayColor does not effect anything with useMaterial3 set to true',(WidgetTestertester)async{
constColorsurfaceColor=Color(0xFF121212);
constColorsurfaceColor=Color(0xFF121212);
awaittester.pumpWidget(Theme(
awaittester.pumpWidget(Theme(
data:ThemeData(
data:ThemeData(
...
@@ -337,7 +338,7 @@ void main() {
...
@@ -337,7 +338,7 @@ void main() {
expect(model.color,equals(surfaceColor));
expect(model.color,equals(surfaceColor));
});
});
testWidgets('surfaceTintColor is used to as an overlay to indicate elevation',(WidgetTestertester)async{
testWidgetsWithLeakTracking('surfaceTintColor is used to as an overlay to indicate elevation',(WidgetTestertester)async{
constColorbaseColor=Color(0xFF121212);
constColorbaseColor=Color(0xFF121212);
constColorsurfaceTintColor=Color(0xff44CCFF);
constColorsurfaceTintColor=Color(0xff44CCFF);
...
@@ -400,7 +401,7 @@ void main() {
...
@@ -400,7 +401,7 @@ void main() {
group('Elevation Overlay M2',(){
group('Elevation Overlay M2',(){
// These tests only apply to the Material 2 overlay mechanism. This group
// These tests only apply to the Material 2 overlay mechanism. This group
// can be removed after migration to Material 3 is complete.
// can be removed after migration to Material 3 is complete.
testWidgets('applyElevationOverlayColor set to false does not change surface color',(WidgetTestertester)async{
testWidgetsWithLeakTracking('applyElevationOverlayColor set to false does not change surface color',(WidgetTestertester)async{
constColorsurfaceColor=Color(0xFF121212);
constColorsurfaceColor=Color(0xFF121212);
awaittester.pumpWidget(Theme(
awaittester.pumpWidget(Theme(
data:ThemeData(
data:ThemeData(
...
@@ -414,7 +415,7 @@ void main() {
...
@@ -414,7 +415,7 @@ void main() {
expect(model.color,equals(surfaceColor));
expect(model.color,equals(surfaceColor));
});
});
testWidgets('applyElevationOverlayColor set to true applies a semi-transparent onSurface color to the surface color',(WidgetTestertester)async{
testWidgetsWithLeakTracking('applyElevationOverlayColor set to true applies a semi-transparent onSurface color to the surface color',(WidgetTestertester)async{
constColorsurfaceColor=Color(0xFF121212);
constColorsurfaceColor=Color(0xFF121212);
constColoronSurfaceColor=Colors.greenAccent;
constColoronSurfaceColor=Colors.greenAccent;
...
@@ -456,7 +457,7 @@ void main() {
...
@@ -456,7 +457,7 @@ void main() {
}
}
});
});
testWidgets('overlay will not apply to materials using a non-surface color',(WidgetTestertester)async{
testWidgetsWithLeakTracking('overlay will not apply to materials using a non-surface color',(WidgetTestertester)async{
awaittester.pumpWidget(
awaittester.pumpWidget(
Theme(
Theme(
data:ThemeData(
data:ThemeData(
...
@@ -475,7 +476,7 @@ void main() {
...
@@ -475,7 +476,7 @@ void main() {
expect(model.color,equals(Colors.cyan));
expect(model.color,equals(Colors.cyan));
});
});
testWidgets('overlay will not apply to materials using a light theme',(WidgetTestertester)async{
testWidgetsWithLeakTracking('overlay will not apply to materials using a light theme',(WidgetTestertester)async{
awaittester.pumpWidget(
awaittester.pumpWidget(
Theme(
Theme(
data:ThemeData(
data:ThemeData(
...
@@ -494,7 +495,7 @@ void main() {
...
@@ -494,7 +495,7 @@ void main() {
expect(model.color,equals(Colors.cyan));
expect(model.color,equals(Colors.cyan));
});
});
testWidgets('overlay will apply to materials with a non-opaque surface color',(WidgetTestertester)async{
testWidgetsWithLeakTracking('overlay will apply to materials with a non-opaque surface color',(WidgetTestertester)async{
testWidgets('RefreshIndicator responds to strokeWidth',(WidgetTestertester)async{
testWidgetsWithLeakTracking('RefreshIndicator responds to strokeWidth',(WidgetTestertester)async{
awaittester.pumpWidget(
awaittester.pumpWidget(
MaterialApp(
MaterialApp(
home:RefreshIndicator(
home:RefreshIndicator(
...
@@ -507,7 +509,7 @@ void main() {
...
@@ -507,7 +509,7 @@ void main() {
);
);
});
});
testWidgets('RefreshIndicator responds to edgeOffset',(WidgetTestertester)async{
testWidgetsWithLeakTracking('RefreshIndicator responds to edgeOffset',(WidgetTestertester)async{
awaittester.pumpWidget(
awaittester.pumpWidget(
MaterialApp(
MaterialApp(
home:RefreshIndicator(
home:RefreshIndicator(
...
@@ -555,7 +557,7 @@ void main() {
...
@@ -555,7 +557,7 @@ void main() {
);
);
});
});
testWidgets('RefreshIndicator appears at edgeOffset',(WidgetTestertester)async{
testWidgetsWithLeakTracking('RefreshIndicator appears at edgeOffset',(WidgetTestertester)async{
awaittester.pumpWidget(MaterialApp(
awaittester.pumpWidget(MaterialApp(
home:RefreshIndicator(
home:RefreshIndicator(
edgeOffset:kToolbarHeight,
edgeOffset:kToolbarHeight,
...
@@ -584,7 +586,7 @@ void main() {
...
@@ -584,7 +586,7 @@ void main() {
);
);
});
});
testWidgets('Top RefreshIndicator(anywhere mode) should be shown when dragging from non-zero scroll position',(WidgetTestertester)async{
testWidgetsWithLeakTracking('Top RefreshIndicator(anywhere mode) should be shown when dragging from non-zero scroll position',(WidgetTestertester)async{
testWidgets('Reverse RefreshIndicator(anywhere mode) should be shown when dragging from non-zero scroll position',(WidgetTestertester)async{
testWidgetsWithLeakTracking('Reverse RefreshIndicator(anywhere mode) should be shown when dragging from non-zero scroll position',(WidgetTestertester)async{
testWidgets('Top RefreshIndicator(onEdge mode) should not be shown when dragging from non-zero scroll position',(WidgetTestertester)async{
testWidgetsWithLeakTracking('Top RefreshIndicator(onEdge mode) should not be shown when dragging from non-zero scroll position',(WidgetTestertester)async{
testWidgets('Reverse RefreshIndicator(onEdge mode) should be shown when dragging from non-zero scroll position',(WidgetTestertester)async{
testWidgetsWithLeakTracking('Reverse RefreshIndicator(onEdge mode) should be shown when dragging from non-zero scroll position',(WidgetTestertester)async{