PhoneContact.MAUI.KK 1.1.2

There is a newer version of this package available.
See the version list below for details.
dotnet add package PhoneContact.MAUI.KK --version 1.1.2
                    
NuGet\Install-Package PhoneContact.MAUI.KK -Version 1.1.2
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="PhoneContact.MAUI.KK" Version="1.1.2" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="PhoneContact.MAUI.KK" Version="1.1.2" />
                    
Directory.Packages.props
<PackageReference Include="PhoneContact.MAUI.KK" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add PhoneContact.MAUI.KK --version 1.1.2
                    
#r "nuget: PhoneContact.MAUI.KK, 1.1.2"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package PhoneContact.MAUI.KK@1.1.2
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=PhoneContact.MAUI.KK&version=1.1.2
                    
Install as a Cake Addin
#tool nuget:?package=PhoneContact.MAUI.KK&version=1.1.2
                    
Install as a Cake Tool

#PhoneContact.Maui.KK Developed using MAUI.

Overview

PhoneContact.Maui.KK is a MAUI application that enables users to access and manage phone contacts efficiently. The app provides a clean UI for viewing, searching, and interacting with contacts stored on an Android or iOS device.

Features

  • Retrieve and display phone contacts
  • Search and filter contacts
  • Select multiple contacts
  • Display contact details such as name, phone number, email, address, company, and birthday
  • Customizable Close button
  • Request runtime permissions for accessing contacts
  • Cross-platform support (Android & iOS)
  • Smooth UI experience with MAUI

DOCUEMNTAION

-BY USING BELOW GIVEN LINK YOU CAN SEE THE DOCUMENTATION FOR THIS PROJECT. -Add the below given code to show the Custom contact control kkContactControl.EnableMultiSelectionTickMark = true; IContact contact = new ContactList(); // Assuming Contact implements IContact MobileContact mobile = new MobileContact(contact); mobile.getSelectedContact += Mobile_GetSelectedContactItem; await Navigation.PushModalAsync(mobile);

  • Add the below given code to get the selected contact detail Private void Mobile_GetSelectedContactItem(ContactItem contactItem){}

Get The Full documentation how to integrate the package use this libary

https://medium.com/@kamalelango15/fetch-mobile-contact-in-maui-for-both-iphone-and-android-eefc296985c0

CUSTOMISABLE INFORMATON

BY USING THE BELOW PROPERTIES YOU CAN CUSTOMISE THE CONTACT CONTROL.

public static class kkContactControl {

     /// <summary>
    /// The color of the list separator.
    /// </summary>
    public  static  Color ListSepratorColor = Color.FromArgb("#D3D3D3");
    /// <summary>
    /// The Close button background color.
    /// </summary>
    public static Color CloseButtonBackgroundColor = Color.FromArgb("#D3D3D3");
    /// <summary>
    /// Close button text color.
    /// </summary>
    public static Color CloseButtonTextColor = Color.FromArgb("#FFFFFF");
    /// <summary>
    /// Close Button Image icon name
    /// </summary>
    public static string? CloseButtonImageName;
    /// <summary>
    /// Close Button Title
    /// </summary>
    public static string CloseButtonTitle = "Close";
    /// <summary>
    /// Enable the search bar.
    /// </summary>
    public static bool EnableSearchBar = true;
    /// <summary>
    /// Enable the CloseButton.
    /// </summary>
    public static bool Dismisbutton = true;
    /// <summary>
    /// Enable MutliSelectionTickMark.
    /// </summary>
    public static bool EnableMultiSelectionTickMark;
    // private void GetButonImageName
    /// <summary>
    /// Get Birthday detail while select the contact.
    /// </summary>
    public static bool ShowBithday = false;
    /// <summary>
    /// Get Email detail while select the contact.
    /// </summary>
    public static bool ShowEmail = false;
    /// <summary>
    /// Get Address detail while select the contact.
    /// </summary>
    public static bool ShowAddress = false;
    /// <summary>
    /// Get Company detail while select the contact.
    /// </summary>
    public static bool ShowCompany = false;
    /// <summary>
    /// Get Url detail while select the contact.
    /// </summary>
    public static bool ShowUrl = false;
    /// <summary>
    /// Get Date like birhtday detail while select the contact.
    /// </summary>
     public static bool GetDate = false;

    /// <summary>
    /// While loading the contact below text will be shown
    /// </summary>
     public static string Loadingtext = "Fetching your contact...";

}

Prerequisites

Before running the project, ensure you have:

  • MAUI** installed
  • Visual Studio with MAUI development enabled
  • Android SDK (for Android development)
  • iOS Simulator or device (for iOS development)

Installation

  1. Clone the repository:
    git clone https://github.com/kamalkumar1/XamarinPhoneContact
    
Product Compatible and additional computed target framework versions.
.NET net8.0-android34.0 is compatible.  net8.0-ios18.0 is compatible.  net9.0-android was computed.  net9.0-ios was computed.  net10.0-android was computed.  net10.0-ios was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
2.1.1 249 12/19/2025
2.0.0 225 12/19/2025
1.1.2 222 6/15/2025
1.1.0 283 6/8/2025
1.0.0 278 6/8/2025

Updated Readme file