This commit is contained in:
2023-11-22 00:40:36 +08:00
parent ed12eaf875
commit f194dfc383
3 changed files with 8 additions and 4 deletions

View File

@ -76,8 +76,12 @@ Future<String?> showInputDialogs(BuildContext context,
mainAxisSize: MainAxisSize.min,
crossAxisAlignment: CrossAxisAlignment.start,
children: [
if (content.isNotEmpty) Text(content),
const SizedBox(height: 6),
if (content.isNotEmpty)
Text(
content,
style: TextStyle(color: Colors.white.withOpacity(.6)),
),
const SizedBox(height: 8),
TextFormBox(
initialValue: initialValue,
onChanged: (str) {