import 'package:discover_module/custom_widget/text.dart'; import 'package:flutter/material.dart'; class Alert extends StatefulWidget { const Alert({super.key}); @override State createState() => _AlertState(); } class _AlertState extends State { @override Widget build(BuildContext context) { return AlertDialog( title: Text1( title: "Alert", txtfont: 22.0, ), content: Text1( title: "User Added Successfully", txtfont: 18.0, ), actions: [ TextButton( onPressed: () { Navigator.pop(context); }, child: Text("Cancel")) ], ); } }