File tree 2 files changed +4
-6
lines changed
2 files changed +4
-6
lines changed Original file line number Diff line number Diff line change @@ -15,12 +15,10 @@ class ZerkerRenderObjectWidget extends LeafRenderObjectWidget {
15
15
_ZerkerBox zerkerBox = _ZerkerBox (app: app! , clip: clip ?? false );
16
16
return RenderProxyBox (zerkerBox);
17
17
}
18
-
18
+
19
19
@override
20
- void updateRenderObject (BuildContext context, _ZerkerBox renderObject) {
21
- renderObject
22
- ..app = app!
23
- ..clip = clip ?? false ;
20
+ void updateRenderObject (BuildContext context, RenderProxyBox renderProxyBox) {
21
+ renderProxyBox.child = _ZerkerBox (app: app! , clip: clip ?? false );
24
22
}
25
23
}
26
24
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ description: Zerker is a flexible and lightweight flutter canvas graphic animati
11
11
# In iOS, build-name is used as CFBundleShortVersionString while build-number used as CFBundleVersion.
12
12
# Read more about iOS versioning at
13
13
# https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html
14
- version : 2.7.7
14
+ version : 2.7.8
15
15
homepage : https://github.com/flutterkit/zerker
16
16
17
17
environment :
You can’t perform that action at this time.
0 commit comments