import 'package:flutter/material.dart'; class FxErrorText extends StatelessWidget { final String title; const FxErrorText({ required this.title, Key? key, }) : super(key: key); @override Widget build(BuildContext context) { return Text( "Error $title", style: const TextStyle( fontSize: 16, color: Colors.red, ), ); } }