2020-07-11 13:33:31 +02:00
|
|
|
|
|
|
|
import 'package:flutter/material.dart';
|
2021-08-08 23:16:54 +02:00
|
|
|
import 'package:jisho_study_tool/bloc/theme/theme_bloc.dart';
|
2020-07-11 13:33:31 +02:00
|
|
|
|
|
|
|
class JlptLevel extends StatelessWidget {
|
2021-03-03 00:24:25 +01:00
|
|
|
final String jlptLevel;
|
2020-07-11 13:33:31 +02:00
|
|
|
|
2021-08-03 22:13:50 +02:00
|
|
|
const JlptLevel(this.jlptLevel);
|
|
|
|
|
2020-07-11 13:33:31 +02:00
|
|
|
@override
|
|
|
|
Widget build(BuildContext context) {
|
2021-08-08 23:16:54 +02:00
|
|
|
final _kanjiColors = BlocProvider.of<ThemeBloc>(context).state.theme.kanjiResultColor;
|
|
|
|
|
2020-07-11 13:33:31 +02:00
|
|
|
return Container(
|
|
|
|
padding: EdgeInsets.all(10.0),
|
|
|
|
child: Text(
|
2021-03-03 00:24:25 +01:00
|
|
|
jlptLevel,
|
2020-07-11 13:33:31 +02:00
|
|
|
style: TextStyle(
|
2021-08-08 23:16:54 +02:00
|
|
|
color: _kanjiColors.foreground,
|
2020-07-11 13:33:31 +02:00
|
|
|
fontSize: 20.0,
|
|
|
|
),
|
|
|
|
),
|
|
|
|
decoration: BoxDecoration(
|
|
|
|
shape: BoxShape.circle,
|
2021-08-08 23:16:54 +02:00
|
|
|
color: _kanjiColors.background,
|
2020-07-11 13:33:31 +02:00
|
|
|
),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|