Jisho-Study-Tool/lib/view/components/kanji/result/jlpt_level.dart

26 lines
506 B
Dart
Raw Normal View History

2020-07-11 13:33:31 +02:00
import 'package:flutter/material.dart';
class JlptLevel extends StatelessWidget {
2021-03-03 00:24:25 +01:00
final String jlptLevel;
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
jlptLevel,
2020-07-11 13:33:31 +02:00
style: TextStyle(
color: Colors.white,
fontSize: 20.0,
),
),
decoration: BoxDecoration(
shape: BoxShape.circle,
color: Colors.blue,
),
);
}
2021-03-03 00:24:25 +01:00
JlptLevel(this.jlptLevel);
2020-07-11 13:33:31 +02:00
}