flutter_dialpad
flutter_dialpad copied to clipboard
# and * buttons are not working.
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);
}
)
),
);
}