flutter_dialpad icon indicating copy to clipboard operation
flutter_dialpad copied to clipboard

# and * buttons are not working.

Open viralvaghela opened this issue 4 years ago • 1 comments

viralvaghela avatar Sep 22 '21 03:09 viralvaghela

In order to get the * and # working, kindly change the output mask from outputMask: "(000) 000-0000" to outputMask: "***************", @viralvaghela @eopeter

Full Code

@override
  Widget build(BuildContext context) {
    return Scaffold(
      backgroundColor: Colors.black,
      body: SafeArea(
        child:
            DialPad(
                enableDtmf: true,
                outputMask: "***************",
                backspaceButtonIconColor: Colors.red,
                makeCall: (number){
                    print(number);
                }
            )
        ),
    );
  }

EmmanuelAmet avatar Mar 01 '22 13:03 EmmanuelAmet