31 lines
725 B
Dart
31 lines
725 B
Dart
|
|
import 'package:flutter/material.dart';
|
||
|
|
|
||
|
|
class FixChip extends StatelessWidget {
|
||
|
|
final String label;
|
||
|
|
final Color color;
|
||
|
|
|
||
|
|
const FixChip({
|
||
|
|
required this.label,
|
||
|
|
required this.color,
|
||
|
|
});
|
||
|
|
|
||
|
|
@override
|
||
|
|
Widget build(BuildContext context) {
|
||
|
|
return Container(
|
||
|
|
padding: const EdgeInsets.symmetric(horizontal: 7, vertical: 2),
|
||
|
|
decoration: BoxDecoration(
|
||
|
|
borderRadius: BorderRadius.circular(999),
|
||
|
|
border: Border.all(color: color),
|
||
|
|
color: color.withOpacity(0.12),
|
||
|
|
),
|
||
|
|
child: Text(
|
||
|
|
label,
|
||
|
|
style: Theme.of(context).textTheme.labelSmall?.copyWith(
|
||
|
|
color: color,
|
||
|
|
fontWeight: FontWeight.w800,
|
||
|
|
),
|
||
|
|
),
|
||
|
|
);
|
||
|
|
}
|
||
|
|
}
|