💄 Optimize hint

This commit is contained in:
2025-08-05 02:59:08 +08:00
parent 680ece0b6a
commit a706f127b6

View File

@@ -660,14 +660,6 @@ class _CloudFileListEntry extends HookConsumerWidget {
size: 24, size: 24,
), ),
const Gap(4), const Gap(4),
Text(
'Sensitive Content',
style: TextStyle(
color: Colors.white,
fontWeight: FontWeight.w600,
),
),
// Show categories for sensitive content
Text( Text(
file.sensitiveMarks file.sensitiveMarks
.map( .map(
@@ -680,9 +672,17 @@ class _CloudFileListEntry extends HookConsumerWidget {
.join(' · '), .join(' · '),
style: const TextStyle( style: const TextStyle(
color: Colors.white, color: Colors.white,
fontWeight: FontWeight.w600,
), ),
textAlign: TextAlign.center, textAlign: TextAlign.center,
), ),
Text(
'Sensitive Content',
style: TextStyle(
color: Colors.white,
fontSize: 13,
),
),
const Gap(4), const Gap(4),
Text( Text(
'Tap to Reveal', 'Tap to Reveal',
@@ -693,7 +693,7 @@ class _CloudFileListEntry extends HookConsumerWidget {
), ),
], ],
), ),
), ).padding(horizontal: 24, vertical: 16),
), ),
), ),
], ],