buildRightHalfDictionary method

Widget buildRightHalfDictionary()

The dictionary in the case of JidoujishoPopupPosition.rightHalf.

Implementation

Widget buildRightHalfDictionary() {
  return Row(
    mainAxisAlignment: MainAxisAlignment.spaceBetween,
    children: [
      const Flexible(
        child: SizedBox.shrink(),
      ),
      const Space.semiBig(),
      Flexible(
        child: buildDictionaryResult(),
      ),
    ],
  );
}