Read text from clipboard
static Future<String?> readText() async { final t = await Clipboard.getData(Clipboard.kTextPlain); return t?.text; }