buildRowThree method

Widget buildRowThree()

Implementation

Widget buildRowThree() {
  return Row(
    children: [
      TextKey(text: '7', onTextInput: _textInputHandler),
      Container(
        width: 1,
        height: 60,
        color: Colors.grey.withOpacity(0.4),
      ),
      TextKey(text: '8', onTextInput: _textInputHandler),
      Container(
        width: 1,
        height: 60,
        color: Colors.grey.withOpacity(0.4),
      ),
      TextKey(text: '9', onTextInput: _textInputHandler),
    ],
  );
}