<?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: Vishnu Reji</title>
    <description>The latest articles on DEV Community by Vishnu Reji (@iam_vishnureji).</description>
    <link>https://dev.to/iam_vishnureji</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%2F206626%2F9d629c61-9160-4bc2-abbc-add6bf45f5a0.png</url>
      <title>DEV Community: Vishnu Reji</title>
      <link>https://dev.to/iam_vishnureji</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/iam_vishnureji"/>
    <language>en</language>
    <item>
      <title>Flutter : Detect keyboard open and close without using a external package</title>
      <dc:creator>Vishnu Reji</dc:creator>
      <pubDate>Wed, 13 Apr 2022 07:25:15 +0000</pubDate>
      <link>https://dev.to/iam_vishnureji/flutter-detect-keyboard-open-and-close-3gk6</link>
      <guid>https://dev.to/iam_vishnureji/flutter-detect-keyboard-open-and-close-3gk6</guid>
      <description>&lt;p&gt;&lt;strong&gt;Step 1&lt;/strong&gt;&lt;br&gt;
Create a variable&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;bool _keyboardVisible = false;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;in &lt;code&gt;StatefullWidget&lt;/code&gt;&lt;br&gt;
&lt;strong&gt;Step 2&lt;/strong&gt;&lt;br&gt;
Then initialize that variable in the &lt;code&gt;build&lt;/code&gt; widget;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;@override
Widget build(BuildContext context) {
    _keyboardVisible = MediaQuery.of(context).viewInsets.bottom != 0;
    return child;
}
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



</description>
      <category>flutter</category>
      <category>beginners</category>
      <category>programming</category>
      <category>mobile</category>
    </item>
    <item>
      <title>My Favorite 5 Visual Studio Code Extensions</title>
      <dc:creator>Vishnu Reji</dc:creator>
      <pubDate>Tue, 15 Oct 2019 04:25:02 +0000</pubDate>
      <link>https://dev.to/iam_vishnureji/my-favorite-5-visual-studio-code-extensions-50af</link>
      <guid>https://dev.to/iam_vishnureji/my-favorite-5-visual-studio-code-extensions-50af</guid>
      <description>&lt;p&gt;&lt;strong&gt;&lt;a href="https://marketplace.visualstudio.com/items?itemName=ritwickdey.LiveServer"&gt;#1.Live server&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--ZwCX0OUu--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_66%2Cw_800/https://i.ibb.co/cQX5HtD/vscode-live-server-animated-demo.gif" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--ZwCX0OUu--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_66%2Cw_800/https://i.ibb.co/cQX5HtD/vscode-live-server-animated-demo.gif" alt="Live Server" width="" height=""&gt;&lt;/a&gt;&lt;br&gt;
Make changes in code editor, switch to browser, and refresh to see changes. That's the endless cycle of a developer, but what if your browser would automatically refresh anytime you make changes? That's where Live Server comes in!&lt;/p&gt;

&lt;p&gt;It also runs your app on a localhost server. There are some things you can only test when running your app from a server, so this is a nice benefit.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;&lt;a href="https://marketplace.visualstudio.com/items?itemName=esbenp.prettier-vscode"&gt;#2.Prettier - Code formatter&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--wlyBYufc--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_66%2Cw_800/https://i.ibb.co/cyfks5X/prettier.gif" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--wlyBYufc--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_66%2Cw_800/https://i.ibb.co/cyfks5X/prettier.gif" alt="Prettier - Code formatter" width="800" height="402"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Prettier is an opinionated code formatter. It enforces a consistent style by parsing your code and re-printing it with its own rules that take the maximum line length into account, wrapping code when necessary.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;&lt;a href="https://marketplace.visualstudio.com/items?itemName=formulahendry.auto-close-tag"&gt;#3.Auto Close Tag&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s---7uo2Zbi--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_66%2Cw_800/https://i.ibb.co/mzBg0jc/usage.gif" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s---7uo2Zbi--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_66%2Cw_800/https://i.ibb.co/mzBg0jc/usage.gif" alt="Auto Close Tag" width="800" height="521"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Automatically add HTML/XML close tag, same as Visual Studio IDE or Sublime Text does.&lt;/p&gt;

&lt;p&gt;Features&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt; Automatically add closing tag when you type in the closing bracket of the opening tag&lt;/li&gt;
&lt;li&gt; After closing tag is inserted, the cursor is between the opening and closing tag&lt;/li&gt;
&lt;li&gt; Set the tag list that would not be auto closed&lt;/li&gt;
&lt;li&gt; Automatically close self-closing tag&lt;/li&gt;
&lt;li&gt; Support auto close tag as Sublime Text 3&lt;/li&gt;
&lt;li&gt; Use Keyboard Shortcut or Command Palette to add close tag manually&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;&lt;a href="https://marketplace.visualstudio.com/items?itemName=AndersEAndersen.html-class-suggestions"&gt;#4.HTML Class Suggestions&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--1RIuFkPu--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://i.ibb.co/dQKqNcR/Screenshot-1.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--1RIuFkPu--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://i.ibb.co/dQKqNcR/Screenshot-1.png" alt="HTML Class Suggestions" width="800" height="371"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;html-class-suggestions is a Visual Studio Code extension that provides completion options for html class attributes based on the css files in your workspace.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;&lt;a href="https://marketplace.visualstudio.com/items?itemName=vscode-icons-team.vscode-icons"&gt;#5.vscode-icons&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--z0nFkfSR--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_66%2Cw_800/https://i.ibb.co/GtYNR3L/screenshot.gif" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--z0nFkfSR--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_66%2Cw_800/https://i.ibb.co/GtYNR3L/screenshot.gif" alt="vscode-icons" width="800" height="600"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Comprehensive icon extension for Visual Studio Code. ..&lt;/p&gt;

</description>
      <category>vscode</category>
      <category>html</category>
      <category>css</category>
      <category>tutorial</category>
    </item>
    <item>
      <title>Responsive UI Card</title>
      <dc:creator>Vishnu Reji</dc:creator>
      <pubDate>Mon, 23 Sep 2019 05:47:07 +0000</pubDate>
      <link>https://dev.to/iam_vishnureji/responsive-ui-card-26h6</link>
      <guid>https://dev.to/iam_vishnureji/responsive-ui-card-26h6</guid>
      <description>&lt;p&gt;&lt;iframe height="600" src="https://codepen.io/vishnureji/embed/BXBWbd?height=600&amp;amp;default-tab=result&amp;amp;embed-version=2"&gt;
&lt;/iframe&gt;
&lt;/p&gt;

</description>
      <category>html</category>
      <category>css</category>
      <category>bootsrtap</category>
    </item>
  </channel>
</rss>
