Explorar el Código

fix image hitTestSelf

lucky1213 hace 4 años
padre
commit
4a3b2070ed
Se han modificado 1 ficheros con 3 adiciones y 0 borrados
  1. 3
    0
      packages/zefyr/lib/src/widgets/image.dart

+ 3
- 0
packages/zefyr/lib/src/widgets/image.dart Ver fichero

@@ -103,6 +103,9 @@ class RenderEditableImage extends RenderBox
103 103
     this.child = child;
104 104
   }
105 105
 
106
+  @override
107
+  bool hitTestSelf(Offset position) => true;
108
+
106 109
   @override
107 110
   EmbedNode node;
108 111