Jisho-Study-Tool/lib/components/kanji/kanji_result_body/grade.dart

38 lines
971 B
Dart

import 'package:flutter/material.dart';
import '../../../bloc/theme/theme_bloc.dart';
import '../../../settings.dart';
class Grade extends StatelessWidget {
final String? grade;
final String ifNullChar;
const Grade({
required this.grade,
this.ifNullChar = '',
Key? key,
}) : super(key: key);
@override
Widget build(BuildContext context) => BlocBuilder<ThemeBloc, ThemeState>(
builder: (context, state) {
final colors = state.theme.kanjiResultColor;
return Container(
padding: const EdgeInsets.all(10.0),
decoration: BoxDecoration(
color: colors.background,
shape: BoxShape.circle,
),
child: Text(
grade ?? ifNullChar,
style: TextStyle(
color: colors.foreground,
fontSize: 20.0,
).merge(japaneseFont.textStyle),
),
);
},
);
}