1
0
mirror of https://github.com/h7x4/Jisho-Study-Tool.git synced 2025-01-07 04:07:29 +01:00
Jisho-Study-Tool/lib/view/components/kanji/result/grade.dart

25 lines
485 B
Dart
Raw Normal View History

2020-07-11 13:33:31 +02:00
import 'package:flutter/material.dart';
class Grade extends StatelessWidget {
2021-03-03 00:24:25 +01:00
final String grade;
2020-07-11 13:33:31 +02:00
@override
Widget build(BuildContext context) {
return Container(
padding: EdgeInsets.all(10.0),
child: Text(
2021-03-03 00:24:25 +01:00
grade,
2020-07-11 13:33:31 +02:00
style: TextStyle(
color: Colors.white,
fontSize: 20.0,
),
),
decoration: BoxDecoration(
color: Colors.blue,
shape: BoxShape.circle,
),
);
}
2021-03-03 00:24:25 +01:00
Grade(this.grade);
2020-07-11 13:33:31 +02:00
}