buildFontPanel method

Widget buildFontPanel()

Implementation

Widget buildFontPanel() {
  return Container(
    color: Colors.transparent,
    padding: const EdgeInsets.only(right: 52, bottom: 48),
    child: Column(
      mainAxisSize: MainAxisSize.min,
      children: [
        buildFontMenus(),
      ],
    ),
  );
}