RedDwarf
RedDwarf
No issue from 2022 on this for all devices. i close the issue
hello. any solutions ?
Hi. for example, this uri doesn't work with.version 6.0.0 (playstore) `https://play.google.com/store/apps/details?id=net.archethic.archethic_wallet` Could you reopen this issue please
With your example, i don't understand now how to call the class ```dart class MessageChannelArchethicDappClient extends AWCJsonRPCClient implements ArchethicDAppClient { MessageChannelArchethicDappClient({ required super.origin, }) : super( channelBuilder: () async {...
Finally, it works with ```dart import 'dart:async'; import 'dart:js_interop'; import 'package:archethic_wallet_client/archethic_wallet_client.dart'; import 'package:archethic_wallet_client/src/transport/common/awc_json_rpc_client.dart'; import 'package:archethic_wallet_client/src/transport/message_channel/message_channel.js.dart'; import 'package:flutter/foundation.dart'; import 'package:stream_channel/stream_channel.dart'; import 'package:web/web.dart'; class MessageChannelArchethicDappClient extends AWCJsonRPCClient implements ArchethicDAppClient { MessageChannelArchethicDappClient({ required...
hello @kevmoo I couldn't generate Chrome extension with my code in flutter 3.22 I read https://dart.dev/interop/js-interop/mock but that's not help me :/ Any idea ? ```ssh flutter build web --web-renderer...
to be confirmed but to help community with js_interop, i share a solution i think ```dart // ignore_for_file: avoid_setters_without_getters @JS() library awc; import 'dart:js_interop'; extension type ArchethicJS._(JSObject _) implements JSObject...
Thx for the advice
> A few drive-by comments: > > * The general errors around "invalid types" (which should be a little clearer with a newer version of the SDK) are related to...
Your issue is a doublon. You can find some helps here: https://github.com/pichillilorenzo/flutter_inappwebview/issues/2150