diff --git a/README.md b/README.md
index 296ce19..220c757 100644
--- a/README.md
+++ b/README.md
@@ -1,2 +1,26 @@
-# How-to-wrap-text-in-DOTNET-MAUI-RadiButton
-This repository contains a sample demonstrating of wrap text in .NET MAUI RadiButton.
+# How-to-wrap-text-in-.NET-MAUI-RadiButton
+This repository contains a sample demonstrating of wrapping text using LineBreakMode property in .NET MAUI RadiButton.
+
+## LineBreakMode support in .NET MAUI RadiButton (SfRadiButton)
+The LineBreakMode Support feature enables flexible text truncation and wrapping options within user interface components, enhancing readability and presentation. It facilitates various modes like WordWrap, CharacterWrap, MiddleTruncation, etc., accommodating diverse layout requirements efficiently.
+
+The following code example illustrate how to set LineBreakMode in SfRadiButton.
+
+**XAML**
+```
+
+
+
+
+
+
+
+```
+
+**C#**
+```
+ SfRadioButton radioButton = new SfRadioButton();
+ radioButton.Text = "By clicking here, I state that I have read and understood the terms and conditions.";
+ radioButton.LineBreakMode = LineBreakMode.WordWrap;
+
+```