buildIntroText method

Widget buildIntroText(
  1. BuildContext context,
  2. FastMediaType mediaType
)

Implementation

Widget buildIntroText(BuildContext context, FastMediaType mediaType) {
  final isHandset = mediaType < FastMediaType.tablet;

  return Column(
    children: [
      FastBody(text: introText!, textAlign: TextAlign.center),
      isHandset ? kFastSizedBox24 : kFastSizedBox32,
    ],
  );
}