buildLeftHalfDictionary method
The dictionary in the case of JidoujishoPopupPosition.leftHalf.
Implementation
Widget buildLeftHalfDictionary() {
return Row(
mainAxisAlignment: MainAxisAlignment.spaceBetween,
children: [
Flexible(
child: buildDictionaryResult(),
),
const Space.semiBig(),
const Flexible(
child: SizedBox.shrink(),
),
],
);
}