simple support for android signer

This commit is contained in:
DASHU
2024-09-05 15:37:06 +08:00
parent 52d3138db3
commit d63905841e
6 changed files with 185 additions and 5 deletions

View File

@@ -37,10 +37,16 @@ class _AuthAppInfoComponent extends State<AuthAppInfoComponent> {
rightList.add(Text(
name!,
style: TextStyle(fontWeight: FontWeight.bold),
maxLines: 1,
overflow: TextOverflow.ellipsis,
));
}
if (StringUtil.isNotBlank(des)) {
rightList.add(Text(des!));
rightList.add(Text(
des!,
maxLines: 1,
overflow: TextOverflow.ellipsis,
));
}
return Stack(