0

我在我的应用程序中使用 url_launcher。当我拨打包含“*123#”等数字符号的号码时,它会忽略数字符号并仅拨打*123

4

1 回答 1

1

您也应该使用 Uri.encodeComponent 来编码 #

onPressed: () {
        String no = Uri.encodeComponent('*123#');
        launch('tel:$no');
      },
于 2021-06-26T14:08:03.017 回答