1
0
mirror of https://github.com/h7x4/Jisho-Study-Tool.git synced 2025-01-05 11:27:29 +01:00
Jisho-Study-Tool/lib/view/components/kanji/result/grade.dart
2021-07-17 12:19:03 +02:00

25 lines
485 B
Dart

import 'package:flutter/material.dart';
class Grade extends StatelessWidget {
final String grade;
@override
Widget build(BuildContext context) {
return Container(
padding: EdgeInsets.all(10.0),
child: Text(
grade,
style: TextStyle(
color: Colors.white,
fontSize: 20.0,
),
),
decoration: BoxDecoration(
color: Colors.blue,
shape: BoxShape.circle,
),
);
}
Grade(this.grade);
}