import 'package:flutter/material.dart'; Future helpDialog(BuildContext context, String title, String content) { return showDialog( context: context, builder: (BuildContext context) { return AlertDialog( title: Text(title), content: Text(content), actions: [ TextButton( style: TextButton.styleFrom( textStyle: Theme.of(context).textTheme.labelLarge, ), child: const Text('Got it!'), onPressed: () { Navigator.of(context).pop(); }, ), ], ); }, ); }