buildIntroText method
Implementation
Widget buildIntroText(BuildContext context, FastMediaType mediaType) {
final isHandset = mediaType < FastMediaType.tablet;
return Column(
children: [
FastBody(text: introText!, textAlign: TextAlign.center),
isHandset ? kFastSizedBox24 : kFastSizedBox32,
],
);
}