numberElement2Price function

dynamic numberElement2Price(
  1. String text,
  2. String hint,
  3. String hint2,
  4. TextEditingController _controller,
  5. dynamic onChange(
    1. String
    ),
  6. int numberOfDigits,
)

Implementation

numberElement2Price(String text, String hint, String hint2, TextEditingController _controller, Function(String) onChange, int numberOfDigits){
  return Row(
    crossAxisAlignment: CrossAxisAlignment.center,
    children: [
      SelectableText(text, style: aTheme.style14W400),
      SizedBox(width: 5,),
      Container(
          width: 100,
          child: Edit41web(controller: _controller,
            price: true,
            numberOfDigits: numberOfDigits,
            onChange: onChange,
            hint: hint,
          )),
      SizedBox(width: 5,),
      Text(hint2, style: aTheme.style14W400),
    ],
  );
}