Ingatlanok tulajdoni lapok és tulajdonosok táblázatos és térképi megjelenítése.
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 6s
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 6s
This commit is contained in:
@@ -122,6 +122,22 @@ class AppDrawer extends StatelessWidget {
|
||||
},
|
||||
);
|
||||
}),
|
||||
Obx(() {
|
||||
final signedIn = AuthService.to.isSignedIn;
|
||||
// final projectId = ProjectService.to.activeProject.value?.uuid;
|
||||
// final allowed = !Get.isRegistered<PermissionService>() ||
|
||||
// PermissionService.to.canContacts(projectId: projectId);
|
||||
final allowed = true;
|
||||
if (!signedIn || !allowed) return const SizedBox.shrink();
|
||||
return ListTile(
|
||||
leading: const Icon(Icons.house_outlined),
|
||||
title: const Text('Ingatlanok'),
|
||||
onTap: () {
|
||||
Get.back();
|
||||
Get.toNamed(Routes.PROPERTYLIST);
|
||||
},
|
||||
);
|
||||
}),
|
||||
Obx(() => ListTile(
|
||||
leading: TsSyncService.to.isSyncing.value
|
||||
? const SizedBox(
|
||||
|
||||
Reference in New Issue
Block a user