title_point.dart 300 B

12345678910111213141516
  1. import 'package:flutter/material.dart';
  2. class TitlePoint extends StatelessWidget{
  3. const TitlePoint({super.key, this.color = Colors.blue});
  4. final Color color;
  5. @override
  6. Widget build(BuildContext context) {
  7. return CircleAvatar(
  8. backgroundColor: color,
  9. radius: 5);
  10. }
  11. }