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/jlpt_level.dart
2021-07-17 12:19:03 +02:00

26 lines
506 B
Dart

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