buildRowOne method

Widget buildRowOne()

Implementation

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