<?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: Md Nazmul Islam</title>
    <description>The latest articles on DEV Community by Md Nazmul Islam (@nazmulislamrony).</description>
    <link>https://dev.to/nazmulislamrony</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%2F946368%2F02a3bca6-b5b6-4a42-b497-502a4a21d2d5.jpeg</url>
      <title>DEV Community: Md Nazmul Islam</title>
      <link>https://dev.to/nazmulislamrony</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/nazmulislamrony"/>
    <language>en</language>
    <item>
      <title>What is Flutter Layout Builder?</title>
      <dc:creator>Md Nazmul Islam</dc:creator>
      <pubDate>Sat, 22 Oct 2022 02:52:53 +0000</pubDate>
      <link>https://dev.to/nazmulislamrony/what-is-flutter-layout-builder-a1o</link>
      <guid>https://dev.to/nazmulislamrony/what-is-flutter-layout-builder-a1o</guid>
      <description>&lt;p&gt;In Flutter, LayoutBuilder Widget is similar to the Builder widget except that the framework calls the builder function at layout time and provides the parent widget's constraints. This is useful when the parent constrains the child's size and doesn't depend on the child's intrinsic size&lt;/p&gt;

&lt;p&gt;In Flutter, it takes only a few steps to put text, an icon, or an image on the screen.&lt;/p&gt;

&lt;p&gt;Select a layout widget.&lt;br&gt;
Create a visible widget.&lt;br&gt;
Add the visible widget to the layout widget.&lt;br&gt;
Add the layout widget to the page.&lt;/p&gt;

&lt;p&gt;You can read this article to learn more about Flutter layout builder: &lt;br&gt;
&lt;a href="https://flutterservice.com/flutter-layoutbuilder/"&gt;Flutter layoutbuilder widget example&lt;/a&gt;&lt;br&gt;
You can also learn more from this website:&lt;a href="https://coseries.com/"&gt;Mobile app development&lt;/a&gt;&lt;/p&gt;

</description>
    </item>
    <item>
      <title>How to switch the image on Android?</title>
      <dc:creator>Md Nazmul Islam</dc:creator>
      <pubDate>Sat, 22 Oct 2022 02:49:54 +0000</pubDate>
      <link>https://dev.to/nazmulislamrony/how-to-switch-the-image-on-android-3o1c</link>
      <guid>https://dev.to/nazmulislamrony/how-to-switch-the-image-on-android-3o1c</guid>
      <description>&lt;p&gt;Sometimes you don't want an image to appear abruptly on the screen, rather you want to apply some kind of animation to the image when it transitions from one image to another. This is supported by android in the form of ImageSwitcher.&lt;/p&gt;

&lt;p&gt;An image switcher allows you to add some transitions on the images through the way they appear on screen. In order to use image Switcher, you need to define its XML component first. Its syntax is given below −&lt;/p&gt;

&lt;p&gt;
   android:id="@+id/imageSwitcher1"&lt;br&gt;
   android:layout_width="wrap_content"&lt;br&gt;
   android:layout_height="wrap_content"&lt;br&gt;
   android:layout_centerHorizontal="true"&lt;br&gt;
   android:layout_centerVertical="true" &amp;gt;&lt;br&gt;
&lt;/p&gt;

&lt;p&gt;Now we create an intance of ImageSwithcer in java file and get a reference of this XML component. Its syntax is given below −&lt;/p&gt;

&lt;p&gt;private ImageSwitcher imageSwitcher;&lt;br&gt;
imageSwitcher = (ImageSwitcher)findViewById(R.id.imageSwitcher1);&lt;br&gt;
The next thing we need to do implement the ViewFactory interface and implement unimplemented method that returns an imageView. Its syntax is below −&lt;/p&gt;

&lt;p&gt;imageSwitcher.setImageResource(R.drawable.ic_launcher);&lt;br&gt;
imageSwitcher.setFactory(new ViewFactory() {&lt;br&gt;
   public View makeView() {&lt;br&gt;
      ImageView myView = new ImageView(getApplicationContext());&lt;br&gt;
      return myView;&lt;br&gt;
   }&lt;br&gt;
}&lt;br&gt;
The last thing you need to do is to add Animation to the ImageSwitcher. You need to define an object of Animation class through AnimationUtilities class by calling a static method loadAnimation. Its syntax is given below −&lt;/p&gt;

&lt;p&gt;Animation in = AnimationUtils.loadAnimation(this,android.R.anim.slide_in_left);&lt;br&gt;
imageSwitcher.setInAnimation(in);&lt;br&gt;
imageSwitcher.setOutAnimation(out);  &lt;/p&gt;

&lt;p&gt;You can learn more about image switcher on android from this article: &lt;a href="https://flutterservice.com/image-switcher-in-android-example/"&gt;Image Switcher in Android Example Programmatically&lt;/a&gt;&lt;/p&gt;

</description>
    </item>
    <item>
      <title>[Solved]Flutter PackageManger depreceated</title>
      <dc:creator>Md Nazmul Islam</dc:creator>
      <pubDate>Mon, 17 Oct 2022 05:01:49 +0000</pubDate>
      <link>https://dev.to/nazmulislamrony/solvedflutter-packagemanger-depreceated-1n56</link>
      <guid>https://dev.to/nazmulislamrony/solvedflutter-packagemanger-depreceated-1n56</guid>
      <description>&lt;p&gt;I'm facing an issue after changing the github branch. This issue is getting when we change the compile sdk version to 33. &lt;br&gt;
This issue solve by flutter service team.&lt;br&gt;
Just set the pubspec.yaml below code. &lt;/p&gt;

&lt;p&gt;&lt;code&gt;packagemanager: any&lt;br&gt;
&lt;/code&gt; &lt;br&gt;
&lt;a href="https://flutterservice.com/flutter-packagemanager-has-been-deprecated/"&gt;How to solve the flutter packagemanager deprecated&lt;/a&gt;&lt;/p&gt;

</description>
    </item>
  </channel>
</rss>
