<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[Lin's Blog]]></title><description><![CDATA[Lin's Blog]]></description><link>https://blog.lin.phyo.work</link><generator>RSS for Node</generator><lastBuildDate>Tue, 26 May 2026 15:47:27 GMT</lastBuildDate><atom:link href="https://blog.lin.phyo.work/rss.xml" rel="self" type="application/rss+xml"/><language><![CDATA[en]]></language><ttl>60</ttl><item><title><![CDATA[textAllCaps in Compose]]></title><description><![CDATA[Hello fellow Android nerd.
Are you looking for an alternative of textAllCaps of XML in Jetpack Compose, you are at the right place.
            TextField(
              value = "",
              onValueChange = {},
              keyboardOptions = Key...]]></description><link>https://blog.lin.phyo.work/textallcaps-in-compose</link><guid isPermaLink="true">https://blog.lin.phyo.work/textallcaps-in-compose</guid><category><![CDATA[Jetpack Compose]]></category><category><![CDATA[Android]]></category><dc:creator><![CDATA[Lin Min Phyo]]></dc:creator><pubDate>Tue, 04 Feb 2025 17:02:51 GMT</pubDate><content:encoded><![CDATA[<p>Hello fellow Android nerd.</p>
<p>Are you looking for an alternative of <code>textAllCaps</code> of XML in Jetpack Compose, you are at the right place.</p>
<pre><code class="lang-kotlin">            TextField(
              value = <span class="hljs-string">""</span>,
              onValueChange = {},
              keyboardOptions = KeyboardOptions(
                keyboardType = KeyboardType.Text,
                capitalization = KeyboardCapitalization.Characters
              ),
            )
</code></pre>
<p>The doc of the <code>Capitalization</code> says this</p>
<p><img src="https://cdn.hashnode.com/res/hashnode/image/upload/v1738688394458/6741f986-d5e5-4eda-a68a-d202bc1ec550.png" alt class="image--center mx-auto" /></p>
<p>Happy coding. Subscribe for more Jetpack Compose tricks.</p>
]]></content:encoded></item></channel></rss>