We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents f42e707 + c16fb9d commit 0238d1eCopy full SHA for 0238d1e
templates/flutter/docs/example.md.twig
@@ -33,7 +33,7 @@ FutureBuilder(
33
builder: (context, snapshot) {
34
return snapshot.hasData && snapshot.data != null
35
? Image.memory(
36
- snapshot.data.data,
+ snapshot.data,
37
)
38
: CircularProgressIndicator();
39
},
templates/flutter/lib/src/realtime_mixin.dart.twig
@@ -21,7 +21,8 @@ mixin RealtimeMixin {
21
GetFallbackCookie? getFallbackCookie;
22
23
Future<dynamic> _closeConnection() async {
24
- return await _websok?.sink.close(normalClosure);
+ await _websok?.sink.close(normalClosure);
25
+ _lastUrl = null;
26
}
27
28
_createSocket() async {
0 commit comments