尝试打开电话拨号器时,Flutter Flatbutton按下不起作用

时间:2020-07-13 16:01:27

标签: android flutter

您好,新手在这里飘扬。我在按“已定位”中的Flatbutton的“呼叫”按钮后,尝试用预定义的电话号码打开电话拨号程序,但它不起作用,也没有显示任何错误。我也尝试在onpressed上打印一些值,但没有打印任何值。我已经在另一个dart文件中调用了此小部件。

在这里,我正在使用url_launcher程序包启动电话对话框。 如果还有其他替代方法,请帮助。

(删除了以下一些不重要的设计代码)

class CallCard extends StatefulWidget {
  @override
  _CallCardState createState() => _CallCardState();
}

class _CallCardState extends State<CallCard> {
  @override
  Widget build(BuildContext context) {
        return Positioned(
        bottom: -170,
        child: Container(
          child: Column(
            children: <Widget>[
              SizedBox(
                height: 15,
              ),
              Text(
                'Are you feeling well today?',
                style: TextStyle(
                  fontSize: 24.0,
                ),
              ),

              Text(
                'Give us a call or visit our website.',
                style: TextStyle(
                  fontSize: 18.0,
                  fontWeight: FontWeight.w300,
                ),
              ),
              SizedBox(
                height: 23.0,
              ),
              Row(
                crossAxisAlignment: CrossAxisAlignment.center,
                mainAxisAlignment: MainAxisAlignment.spaceAround,
                children: <Widget>[
                  FlatButton(
                    padding: EdgeInsets.symmetric(horizontal: 20, vertical: 15),
                    color: Color(0xff9ce47c),
                    onPressed: () {
                      final String phone = "01-4441577";
                      launch(phone);
                      print('here');
                    },
                    shape: RoundedRectangleBorder(
                      side: BorderSide(color: Colors.black),
                      borderRadius: BorderRadius.circular(50),
                    ),
                    child: Row(
                      children: <Widget>[
                        Icon(
                          LineAwesomeIcons.phone,
                          size: 22,
                        ),
                        SizedBox(
                          width: 5.0,
                        ),
                        Text(
                          'Call Now',
                          style: TextStyle(
                            fontSize: 16,
                          ),
                        ),
                      ],
                    ),
                  ),
                  SizedBox(
                    width: 1.0,
                  ),
                  
                      ],
                    ),
                  ),
                ],
              )
            ],
          ),
          
        ));
  }
}

这是我称为此小部件(在Stack内部)的代码

child: Column(
          mainAxisAlignment: MainAxisAlignment.start,
          children: <Widget>[
            Stack(
              alignment: Alignment.topCenter,
              overflow: Overflow.visible,
              children: <Widget>[
                _backgroundCover(),
                //content inside header
                Positioned(
                  top: 80,
                  left: 30,
                  child: Row(
                    mainAxisAlignment: MainAxisAlignment.spaceEvenly,
                    //crossAxisAlignment: CrossAxisAlignment.start,
                    children: <Widget>[
                      Text(
                        'Hello User',
                        style: TextStyle(
                          fontSize: 36,
                          fontWeight: FontWeight.w500,
                          color: Colors.black,
                        ),
                      ),
                      SizedBox(width: 10.0,),
                      // Padding(padding: EdgeInsets.only(right: 200.0)),
                      IconButton(
                          icon: Icon(
                            LineAwesomeIcons.power_off,
                            size: 40.0,
                          ),
                          onPressed: () {
                            DialogHelper.exit(context);
                            // await _auth.signOut();
                          }),
                    ],
                  ),
                ),
                CallCard(),
                
              ],
            ),
          ],
        ),
      ),
    );

2 个答案:

答案 0 :(得分:1)

您是否尝试过在发布之前打印照片?可能是发射卡住了,然后打印却无法到达(某些软件包在我身上已经发生过)。

我不确定启动如何与电话号码一起使用,但是您可能想调查一下是否正确使用了它。

答案 1 :(得分:0)

我可以接受此代码。

launch('tel:$yourPhoneNo');