Fix BottomSheet ancestor lookup

This commit is contained in:
Janez T
2026-03-16 21:46:37 +01:00
parent 1fe260b95e
commit 434d3df53e
11 changed files with 377 additions and 250 deletions

View File

@@ -154,7 +154,7 @@ class _AddContactScreenState extends State<AddContactScreen> {
final colorScheme = theme.colorScheme;
return Scaffold(
appBar: AppBar(title: const Text('Import Contact')),
appBar: AppBar(title: const Text('Add Contact')),
body: ListView(
padding: const EdgeInsets.all(16),
children: [
@@ -315,7 +315,7 @@ class _AddContactScreenState extends State<AddContactScreen> {
? 'Importing...'
: _importSucceeded
? 'Imported'
: 'Import Contact',
: 'Add Contact',
),
),
const SizedBox(height: 12),