createTestBody static method
Implementation
static Widget createTestBody() {
return SafeArea(
child: Container(
padding: const EdgeInsets.symmetric(vertical: 40, horizontal: 10),
color: Colors.white,
child: Text(
'''
${L10n.gasoline}
${L10n.coat}
${L10n.mailbox}
${L10n.highway}
${L10n.elevator}
${L10n.apartment}
${L10n.whatIsLP.sub([L10n.loremIpsum, L10n.pageMaker])}
''',
style: const TextStyle(
color: Colors.black,
fontWeight: FontWeight.normal,
fontSize: 18,
decoration: TextDecoration.none),
),
),
);
}