Search code examples
flutterflutter-web

How to open Viber app in Flutter web app?


I want to open Viber app (Android / Windows) from flutter web application. I tried using url_launcher but it does not work.

The URL to open Viber chat is viber://chat?number=xxx. How can I call this from flutter web app?


Solution

  • Found a solution. I used html package

    import 'dart:html' as html;
    

    After that

    html.window.open('viber://chat?number=xxx', '');