<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Vamsi Reddy</title>
    <description>The latest articles on DEV Community by Vamsi Reddy (@vamsi_reddy_397438ed17335).</description>
    <link>https://dev.to/vamsi_reddy_397438ed17335</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F1357657%2F10ca6c85-b407-43c6-b9b6-67c92008341a.png</url>
      <title>DEV Community: Vamsi Reddy</title>
      <link>https://dev.to/vamsi_reddy_397438ed17335</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/vamsi_reddy_397438ed17335"/>
    <language>en</language>
    <item>
      <title>FlyoutPage in .net maui</title>
      <dc:creator>Vamsi Reddy</dc:creator>
      <pubDate>Wed, 16 Apr 2025 06:45:27 +0000</pubDate>
      <link>https://dev.to/vamsi_reddy_397438ed17335/flyoutpage-in-net-maui-3n90</link>
      <guid>https://dev.to/vamsi_reddy_397438ed17335/flyoutpage-in-net-maui-3n90</guid>
      <description></description>
      <category>dotnet</category>
      <category>mobile</category>
      <category>flutter</category>
      <category>development</category>
    </item>
    <item>
      <title>picker in .net maui</title>
      <dc:creator>Vamsi Reddy</dc:creator>
      <pubDate>Fri, 14 Mar 2025 06:24:24 +0000</pubDate>
      <link>https://dev.to/vamsi_reddy_397438ed17335/picker-in-net-maui-1n28</link>
      <guid>https://dev.to/vamsi_reddy_397438ed17335/picker-in-net-maui-1n28</guid>
      <description></description>
      <category>dotnet</category>
    </item>
    <item>
      <title>.NET MAUI BorderLessEntry for all platforms</title>
      <dc:creator>Vamsi Reddy</dc:creator>
      <pubDate>Thu, 21 Mar 2024 03:39:26 +0000</pubDate>
      <link>https://dev.to/vamsi_reddy_397438ed17335/net-maui-borderlessentry-for-all-platforms-1d97</link>
      <guid>https://dev.to/vamsi_reddy_397438ed17335/net-maui-borderlessentry-for-all-platforms-1d97</guid>
      <description>&lt;p&gt;&lt;a href="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fdwq05lzuum0egtv46qk3.PNG" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fdwq05lzuum0egtv46qk3.PNG" alt="Image description" width="684" height="731"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  First Create a Class with BorderlessEntry and add the below code
&lt;/h2&gt;

&lt;h2&gt;
  
  
  public class BorderlessEntry: Entry
&lt;/h2&gt;

&lt;p&gt;{&lt;br&gt;
  }&lt;/p&gt;

&lt;h2&gt;
  
  
  Next in the MauiProgram.cs file add the below line of code
&lt;/h2&gt;

&lt;h2&gt;
  
  
  public static MauiApp CreateMauiApp()
&lt;/h2&gt;


&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;    {&lt;br&gt;
        var builder = MauiApp.CreateBuilder();&lt;br&gt;
        builder&lt;br&gt;
            .UseMauiApp&amp;lt;App&amp;gt;()&lt;br&gt;
            .ConfigureFonts(fonts =&amp;gt;&lt;br&gt;
            {&lt;br&gt;
                fonts.AddFont("OpenSans-Regular.ttf", "OpenSansRegular");&lt;br&gt;
                fonts.AddFont("OpenSans-Semibold.ttf", "OpenSansSemibold");&lt;br&gt;
            });
&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;    Microsoft.Maui.Handlers.EntryHandler.Mapper.AppendToMapping("Borderless",(handler,view) =&amp;amp;gt;
    {
        if(view is BorderlessEntry)
        {
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;
&lt;h1&gt;
&lt;br&gt;
  &lt;br&gt;
  &lt;br&gt;
  if ANDROID&lt;br&gt;
&lt;/h1&gt;
&lt;br&gt;
&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;           handler.PlatformView.Background=null;&lt;br&gt;
           handler.PlatformView.SetBackgroundColor(Android.Graphics.Color.Transparent);&lt;br&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;
&lt;h1&gt;
&lt;br&gt;
  &lt;br&gt;
  &lt;br&gt;
  elif IOS || MACCATALYST&lt;br&gt;
&lt;/h1&gt;
&lt;br&gt;
&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;                handler.PlatformView.BackgroundColor = UIKit.UIColor.Clear;&lt;br&gt;
                handler.PlatformView.Layer.BorderWidth= 0;&lt;br&gt;
                handler.PlatformView.BorderStyle = UIKit.UITextBorderStyle.None;&lt;br&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;
&lt;h1&gt;
&lt;br&gt;
  &lt;br&gt;
  &lt;br&gt;
  elif WINDOWS&lt;br&gt;
&lt;/h1&gt;
&lt;br&gt;
&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;                 handler.PlatformView.BorderThickness= new Microsoft.UI.Xaml.Thickness(0);&lt;br&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;
&lt;h1&gt;
&lt;br&gt;
  &lt;br&gt;
  &lt;br&gt;
  endif&lt;br&gt;
&lt;/h1&gt;
&lt;br&gt;
&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;            }
&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;    });
    return builder.Build();
}
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;
&lt;h2&gt;
&lt;br&gt;
  &lt;br&gt;
  &lt;br&gt;
  final in Solution Explore open Platforms/Windows/App. Xaml and add the below line of code&lt;br&gt;
&lt;/h2&gt;

&lt;p&gt;&lt;code&gt;&amp;lt;maui: MauiWinUIApplication.Resources&amp;gt;&lt;br&gt;
     &amp;lt;Thickness x:Key="TextControlBorderThemeThickness"&amp;gt;0&amp;lt;/Thickness&amp;gt;&lt;br&gt;
     &amp;lt;Thickness x:Key="TextControlBorderThemeThicknessFocused"&amp;gt;0&amp;lt;/Thickness&amp;gt; &lt;br&gt;
 &amp;lt;/maui: MauiWinUIApplication.Resources&amp;gt;&lt;br&gt;
&lt;/code&gt;&lt;/p&gt;

</description>
      <category>maui</category>
      <category>xamarinforms</category>
      <category>xamarin</category>
    </item>
    <item>
      <title>Border less entry for .NET MAUI which support for all platforms</title>
      <dc:creator>Vamsi Reddy</dc:creator>
      <pubDate>Sat, 16 Mar 2024 15:07:07 +0000</pubDate>
      <link>https://dev.to/vamsi_reddy_397438ed17335/border-less-entry-for-net-maui-which-support-for-all-platforms-3mak</link>
      <guid>https://dev.to/vamsi_reddy_397438ed17335/border-less-entry-for-net-maui-which-support-for-all-platforms-3mak</guid>
      <description></description>
    </item>
  </channel>
</rss>
