buildErrorMessage method
- BuildContext context
override
Implementation
@override
Widget buildErrorMessage(BuildContext context) {
return Column(
children: [
Text(
context.sharedL10n.wasProblemCompletingAction,
style: context.textTheme.bodyLarge!,
),
const SizedBox(
height: 22,
),
Text(
context.sharedL10n.checkFollowingAndTryAgain,
textAlign: TextAlign.left,
),
const SizedBox(
height: 22,
),
Row(
crossAxisAlignment: CrossAxisAlignment.start,
children: [
const Text(
'•',
),
const SizedBox(
width: 11,
),
Expanded(
child: Text(
textAlign: TextAlign.start,
context.sharedL10n.mobileDeviceConnectedInternetOrData,
),
),
],
),
Row(
crossAxisAlignment: CrossAxisAlignment.start,
children: [
const Text(
'•',
),
const SizedBox(
width: 11,
),
Expanded(
child: Text(
textAlign: TextAlign.start,
context.sharedL10n.generatorMustConnectedInternet,
),
),
],
),
],
);
}