29 lines
675 B
Dart
29 lines
675 B
Dart
import 'package:flutter/material.dart';
|
|
|
|
import 'package:nekoya_flutter/utils/utils.dart';
|
|
|
|
class ColorDot extends StatelessWidget {
|
|
const ColorDot({
|
|
Key? key,
|
|
required this.color,
|
|
required this.isActive,
|
|
}) : super(key: key);
|
|
|
|
final Color color;
|
|
final bool isActive;
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return Container(
|
|
padding: const EdgeInsets.all(defaultPadding / 4),
|
|
decoration: BoxDecoration(
|
|
border: Border.all(color: isActive ? primaryColor : Colors.transparent),
|
|
shape: BoxShape.circle,
|
|
),
|
|
child: CircleAvatar(
|
|
radius: 10,
|
|
backgroundColor: color,
|
|
),
|
|
);
|
|
}
|
|
}
|