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