<?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: Jignesh Patel</title>
    <description>The latest articles on DEV Community by Jignesh Patel (@jigneshpatel_flutterdeveloper).</description>
    <link>https://dev.to/jigneshpatel_flutterdeveloper</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%2F1624971%2Fc42d1e9b-21dd-4cfa-ae5a-79a008174561.jpg</url>
      <title>DEV Community: Jignesh Patel</title>
      <link>https://dev.to/jigneshpatel_flutterdeveloper</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/jigneshpatel_flutterdeveloper"/>
    <language>en</language>
    <item>
      <title>Flutter AdMob Rewarded Ads</title>
      <dc:creator>Jignesh Patel</dc:creator>
      <pubDate>Mon, 30 Sep 2024 10:42:37 +0000</pubDate>
      <link>https://dev.to/jigneshpatel_flutterdeveloper/google-admob-rewarded-video-ads-in-flutter-4k29</link>
      <guid>https://dev.to/jigneshpatel_flutterdeveloper/google-admob-rewarded-video-ads-in-flutter-4k29</guid>
      <description>&lt;p&gt;&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F7hyqnylawcizcj03f7r2.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F7hyqnylawcizcj03f7r2.png" alt="Image description" width="800" height="418"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;How to integrate AdMob rewarded ads in your Flutter app to give users rewards for watching video ads. This guide covers the basics of Google AdMob rewarded ads, including examples and setup for both Android and iOS apps. We’ll also explain how rewarded ads can help you earn more revenue while keeping users engaged.&lt;/p&gt;

&lt;h2&gt;
  
  
  What Are AdMob Rewarded Ads?
&lt;/h2&gt;

&lt;p&gt;Rewarded ads are video ads that offer rewards to users who watch them until the end. They are popular in gaming apps, but can be used in other types of apps too. Users enjoy receiving rewards, while developers benefit from increased ad revenue.&lt;/p&gt;

&lt;h2&gt;
  
  
  How to Integrate Rewarded Ads in Flutter?
&lt;/h2&gt;

&lt;p&gt;Here are the steps to integrate &lt;a href="https://fluttertutorialhub.com/admob/google-admob-rewarded-video-ads-flutt/" rel="noopener noreferrer"&gt;AdMob rewarded ads&lt;/a&gt; into your Flutter app.&lt;/p&gt;

</description>
      <category>flutter</category>
      <category>dart</category>
      <category>android</category>
      <category>ios</category>
    </item>
    <item>
      <title>How to get a contact list from your phone in Flutter</title>
      <dc:creator>Jignesh Patel</dc:creator>
      <pubDate>Fri, 20 Sep 2024 09:59:19 +0000</pubDate>
      <link>https://dev.to/jigneshpatel_flutterdeveloper/how-to-get-a-contact-list-from-your-phone-in-flutter-1da4</link>
      <guid>https://dev.to/jigneshpatel_flutterdeveloper/how-to-get-a-contact-list-from-your-phone-in-flutter-1da4</guid>
      <description>&lt;p&gt;Do you need to get a phone number, name, or email from the contact list on your phone in Flutter? If yes, it is a very easy way to implement this functionality in your Flutter project. Sometimes you need this kind of functionality for a client project or personal project development. For that, you need to create a &lt;a href="https://fluttertutorialhub.com/flutter/get-contact-list-phone-flutter/" rel="noopener noreferrer"&gt;Flutter contact list&lt;/a&gt;. It covers everything you need to know, including how to access phone contacts and display them in a list view.&lt;br&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%2Fy249co6cd7grqn2ic2td.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%2Fy249co6cd7grqn2ic2td.png" alt="Image description" width="" height=""&gt;&lt;/a&gt;&lt;/p&gt;

</description>
      <category>dart</category>
      <category>flutter</category>
      <category>android</category>
      <category>ios</category>
    </item>
    <item>
      <title>Method Channel in Flutter: Bridge Native Code Example</title>
      <dc:creator>Jignesh Patel</dc:creator>
      <pubDate>Fri, 20 Sep 2024 09:54:30 +0000</pubDate>
      <link>https://dev.to/jigneshpatel_flutterdeveloper/method-channel-in-flutter-bridge-native-code-example-46jj</link>
      <guid>https://dev.to/jigneshpatel_flutterdeveloper/method-channel-in-flutter-bridge-native-code-example-46jj</guid>
      <description>&lt;p&gt;We will learn how to use the &lt;a href="https://fluttertutorialhub.com/flutter/method-channel-flutter-native-code/" rel="noopener noreferrer"&gt;method channel in Flutter&lt;/a&gt; to communicate data between Flutter and native code. In this article, Understanding how to pass arguments to the Android and iOS native platforms and return the value from native code to Flutter.&lt;/p&gt;

&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%2Fctyz8a9sm53zq37krwgi.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%2Fctyz8a9sm53zq37krwgi.png" alt="Image description" width="" height=""&gt;&lt;/a&gt;&lt;/p&gt;

</description>
      <category>dart</category>
      <category>flutter</category>
      <category>ios</category>
      <category>android</category>
    </item>
    <item>
      <title>Share multiple files in Flutter</title>
      <dc:creator>Jignesh Patel</dc:creator>
      <pubDate>Fri, 14 Jun 2024 09:35:48 +0000</pubDate>
      <link>https://dev.to/jigneshpatel_flutterdeveloper/share-multiple-files-in-flutter-5202</link>
      <guid>https://dev.to/jigneshpatel_flutterdeveloper/share-multiple-files-in-flutter-5202</guid>
      <description>&lt;p&gt;If you are developing mobile apps using the Flutter framework, you have the question, “How to share one or multiple files (image, PDF, video, document) to WhatsApp or social media in Flutter?” If you are searching for this, you are in the right place. You can &lt;a href="https://fluttertutorialhub.com/flutter/what-is-flutter-why-should-learn/"&gt;learn Flutter&lt;/a&gt; easily and build applications very quickly. In this article, I will explain how to share one or more images, PDFs, videos, or document files to WhatsApp or social media using Share Plus in Flutter.&lt;/p&gt;

&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%2F46ydmkvj2fmowxmu4pmm.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%2F46ydmkvj2fmowxmu4pmm.png" alt="Image description" width="800" height="418"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Here you can get full code for &lt;a href="https://fluttertutorialhub.com/flutter/share-multiple-files-image-flutter/"&gt;Share multiple files in Flutter&lt;/a&gt;.&lt;/p&gt;

</description>
      <category>flutter</category>
      <category>android</category>
      <category>ios</category>
      <category>beginners</category>
    </item>
  </channel>
</rss>
