Add bidirectional refresh physics

This commit is contained in:
Janez T
2026-03-13 10:31:37 +01:00
parent 77e43843bf
commit 90877a1891
5 changed files with 283 additions and 14 deletions

View File

@@ -95,4 +95,13 @@ void main() {
expect(find.text('Rescue One'), findsOneWidget);
expect(find.text('John Smith'), findsNothing);
});
testWidgets('hides public key in contact tile', (tester) async {
final contact = buildContact(name: 'John Smith', type: ContactType.chat);
await pumpTile(tester, contact);
expect(find.text(contact.publicKeyShort), findsNothing);
expect(find.byIcon(Icons.key_outlined), findsNothing);
});
}