Add missing colons to headers
This commit is contained in:
parent
e994d73506
commit
04793b58ca
|
@ -20,18 +20,17 @@ class KanjiBox extends StatelessWidget {
|
|||
aspectRatio: 1,
|
||||
child: Container(
|
||||
padding: const EdgeInsets.all(5),
|
||||
alignment: Alignment.center,
|
||||
decoration: BoxDecoration(
|
||||
color: menuColors.background,
|
||||
borderRadius: BorderRadius.circular(10.0),
|
||||
),
|
||||
child: Center(
|
||||
child: FittedBox(
|
||||
child: Text(
|
||||
kanji,
|
||||
style: TextStyle(
|
||||
color: menuColors.foreground,
|
||||
fontSize: 25,
|
||||
),
|
||||
child: FittedBox(
|
||||
child: Text(
|
||||
kanji,
|
||||
style: TextStyle(
|
||||
color: menuColors.foreground,
|
||||
fontSize: 25,
|
||||
),
|
||||
),
|
||||
),
|
||||
|
|
|
@ -16,7 +16,7 @@ class OtherForms extends StatelessWidget {
|
|||
children: forms.isNotEmpty
|
||||
? [
|
||||
const Text(
|
||||
'Other Forms',
|
||||
'Other Forms:',
|
||||
style: TextStyle(fontWeight: FontWeight.bold),
|
||||
),
|
||||
Wrap(
|
||||
|
|
Loading…
Reference in New Issue