Jisho-Study-Tool/lib/view/components/kanji/kanji_result_body/rank.dart

31 lines
738 B
Dart
Raw Normal View History

2020-07-11 13:33:31 +02:00
import 'package:flutter/material.dart';
2021-12-01 23:09:53 +01:00
import '../../../../bloc/theme/theme_bloc.dart';
2020-07-11 13:33:31 +02:00
class Rank extends StatelessWidget {
2021-03-03 00:24:25 +01:00
final int rank;
2020-07-11 13:33:31 +02:00
2021-12-01 23:09:53 +01:00
const Rank({required this.rank, Key? key,}) : super(key: key);
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(
2021-12-01 23:09:53 +01:00
padding: const EdgeInsets.all(10.0),
decoration: BoxDecoration(
borderRadius: BorderRadius.circular(10.0),
color: _kanjiColors.background,
),
2020-07-11 13:33:31 +02:00
child: Text(
2021-03-03 00:24:25 +01:00
'${rank.toString()} / 2500',
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,
),
),
);
}
2021-12-01 23:09:53 +01:00
}