buildRowTwo method

Widget buildRowTwo()

Implementation

Widget buildRowTwo() {
  return Row(
    children: [
      TextKey(text: '4', onTextInput: _textInputHandler),
      Container(
        width: 1,
        height: 60,
        color: Colors.grey.withOpacity(0.4),
      ),
      TextKey(text: '5', onTextInput: _textInputHandler),
      Container(
        width: 1,
        height: 60,
        color: Colors.grey.withOpacity(0.4),
      ),
      TextKey(text: '6', onTextInput: _textInputHandler),
    ],
  );
}