1
0
mirror of https://github.com/h7x4/Jisho-Study-Tool.git synced 2025-01-09 13:01:15 +01:00
Jisho-Study-Tool/lib/components/search/search_results_body/parts/badge.dart
h7x4 28f900c02e
Add more content to search results (#31)
* Add lots of new functionality to search results

* Fix jlpt level

* Make antonyms clickable

* Add kanji list

* Replace Blocof with BlocBuilder

* Make kanji widgets squared

* Add missing colons to headers

* add romaji under sentences

* Fix extensive search not showing

* Miscellaneous refactoring
2022-01-23 18:27:00 +01:00

28 lines
572 B
Dart

import 'package:flutter/material.dart';
class Badge extends StatelessWidget {
final Widget? child;
final Color color;
const Badge({
Key? key,
this.child,
required this.color,
}) : super(key: key);
@override
Widget build(BuildContext context) {
return Container(
padding: const EdgeInsets.all(5),
width: 30,
height: 30,
margin: const EdgeInsets.symmetric(horizontal: 2),
decoration: BoxDecoration(
shape: BoxShape.circle,
color: color,
),
child: FittedBox(child: child),
);
}
}