webview_deno icon indicating copy to clipboard operation
webview_deno copied to clipboard

More samples

Open svefro opened this issue 1 year ago • 0 comments

Could you provide some more samples?

  • How to bind async functions? This do not work at my end:
webview.bind("press", async (a, b, c) => {
  console.log(a, b, c);

  const message_from_file = await Deno.readTextFile("test.txt");
  console.log(message_from_file)

  return { times: counter++, file:message_from_file };
});
  • How to compile application that does not show console window on windows? using --no-terminal does not work for me. app exits right away

svefro avatar Nov 05 '24 17:11 svefro