<?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" xmlns:webfeeds="http://webfeeds.org/rss/1.0">
    <channel>
        <title><![CDATA[FlutterFlow Community]]></title>
        <description><![CDATA[FlutterFlow Community]]></description>
        <link>https://community.flutterflow.io</link>
        <image>
            <url>https://tribe-s3-production.imgix.net/NCmwtgDmGjm8Ke1dLDq9A?fit=max&amp;w=500&amp;auto=compress,format</url>
            <title>FlutterFlow Community</title>
            <link>https://community.flutterflow.io</link>
        </image>
        <generator>Bettermode RSS Generator</generator>
        <lastBuildDate>Wed, 08 Apr 2026 11:44:27 GMT</lastBuildDate>
        <atom:link href="https://community.flutterflow.io/rss/feed" rel="self" type="application/rss+xml"/>
        <pubDate>Wed, 08 Apr 2026 11:44:27 GMT</pubDate>
        <copyright><![CDATA[2026 FlutterFlow Community]]></copyright>
        <language><![CDATA[en-us]]></language>
        <ttl>60</ttl>
        <webfeeds:icon>https://tribe-s3-production.imgix.net/NCmwtgDmGjm8Ke1dLDq9A?fit=max&amp;w=500&amp;auto=compress,format</webfeeds:icon>
        <webfeeds:related layout="card" target="browser"/>
        <item>
            <title><![CDATA[Edge to Edge Layout + Safe Bottom Spacing (Without SafeArea Issues)]]></title>
            <description><![CDATA[I ran into an issue where using SafeArea on a bottom container made it look way too tall. On the other hand, applying SafeArea to the full page fixed that, but then I couldn’t get the edge to edge ...]]></description>
            <link>https://community.flutterflow.io/discussions-dzeand9o/post/edge-to-edge-layout-safe-bottom-spacing-without-safearea-issues-mFmGgjNgxtDfMAV</link>
            <guid isPermaLink="true">https://community.flutterflow.io/discussions-dzeand9o/post/edge-to-edge-layout-safe-bottom-spacing-without-safearea-issues-mFmGgjNgxtDfMAV</guid>
            <category><![CDATA[bottom inset ]]></category>
            <category><![CDATA[Edge-to-Edge]]></category>
            <category><![CDATA[safe area]]></category>
            <dc:creator><![CDATA[Udara Pathirage]]></dc:creator>
            <pubDate>Wed, 08 Apr 2026 09:34:34 GMT</pubDate>
            <content:encoded><![CDATA[<p>I ran into an issue where using <code>SafeArea</code> on a bottom container made it look way too tall. On the other hand, applying SafeArea to the full page fixed that, but then I couldn’t get the edge to edge layout I wanted at the top. <br><br>So instead of using SafeArea on the bottom container, I handled the spacing manually.</p><pre><code>import 'dart:io' show Platform;

Future&lt;int&gt; getBottomInset(BuildContext context) async {
  // Add your function code here!
  final bottomInset = MediaQuery.of(context).viewPadding.bottom;
  final result = bottomInset &gt; 0 ? bottomInset + 8 : 8;
  return result.round();
}
</code></pre><h3 class="text-lg" data-toc-id="25e3a2ef-7f96-477f-bea6-acf5235b5bce" id="25e3a2ef-7f96-477f-bea6-acf5235b5bce">✅ How to use</h3><ul><li><p>Create a <strong>Custom Action</strong></p></li><li><p>Call it on <strong>page load or app start</strong></p></li><li><p>Save the returned value to a variable (App State or page variable)</p></li><li><p>Use that value as <strong>bottom padding</strong> for your container or any bottom element</p></li></ul><h3 class="text-lg" data-toc-id="705871bf-5d0f-45db-83b3-f3f9b81464ee" id="705871bf-5d0f-45db-83b3-f3f9b81464ee">💡 Why this works</h3><ul><li><p>Uses the <strong>actual system bottom inset</strong></p></li><li><p>Works on <strong>Android</strong> (gesture + 3 button navigation)</p></li><li><p>Works on <strong>iOS and Android</strong> </p></li><li><p>Keeps the layout consistent across devices</p></li></ul><h3 class="text-lg" data-toc-id="5bfe1b6e-a0aa-425c-b305-1c37b0382ddd" id="5bfe1b6e-a0aa-425c-b305-1c37b0382ddd">❌ Why I didn’t use SafeArea</h3><ul><li><p>Full page SafeArea blocks edge to edge UI at the top</p></li><li><p>Bottom only SafeArea adds too much height to the container</p></li></ul><h3 class="text-lg" data-toc-id="72fc79db-45d4-4a33-802c-0169cbbf1427" id="72fc79db-45d4-4a33-802c-0169cbbf1427">✅ With this approach</h3><ul><li><p>Top stays edge to edge</p></li><li><p>Bottom respects system UI</p></li><li><p>No weird extra spacing</p></li></ul>]]></content:encoded>
        </item>
        <item>
            <title><![CDATA[FlutterFlow Community Question: Custom Actions NEVER Execute]]></title>
            <description><![CDATA[📋 PROBLEM SUMMARY

Custom Actions in my FlutterFlow app NEVER execute - no matter what I try. I need help figuring out why.

----------------------------------------


🔧 APP SETUP

 * App Structure: All pages contain only a single WebView widget that ...]]></description>
            <link>https://community.flutterflow.io/ask-the-community-rcglymkn/post/flutterflow-community-question-custom-actions-never-execute-sfqrru9Fhqwfsl5</link>
            <guid isPermaLink="true">https://community.flutterflow.io/ask-the-community-rcglymkn/post/flutterflow-community-question-custom-actions-never-execute-sfqrru9Fhqwfsl5</guid>
            <dc:creator><![CDATA[Sankyo-connect]]></dc:creator>
            <pubDate>Wed, 08 Apr 2026 08:34:12 GMT</pubDate>
            <content:encoded><![CDATA[<h2 class="text-xl" data-toc-id="64171398-d324-419c-aa98-22e26e567847" id="64171398-d324-419c-aa98-22e26e567847">📋 Problem Summary</h2><p><strong>Custom Actions in my FlutterFlow app NEVER execute</strong> - no matter what I try. I need help figuring out why.</p><hr><h2 class="text-xl" data-toc-id="f1f22138-fe92-4044-a0f5-3bbfedb8480d" id="f1f22138-fe92-4044-a0f5-3bbfedb8480d">🔧 App Setup</h2><ul><li><p><strong>App Structure:</strong> All pages contain only a single WebView widget that loads HTML from an external server (Railway)</p></li><li><p><strong>Distribution:</strong> iOS TestFlight</p></li><li><p><strong>Firebase:</strong> Firestore + FCM (Push Notifications)</p></li><li><p><strong>Goal:</strong> Save FCM token to Firestore <code>users/{uid}</code> document</p></li></ul><hr><h2 class="text-xl" data-toc-id="6ed5b9a8-1b12-4459-bb66-9eec35b29ed1" id="6ed5b9a8-1b12-4459-bb66-9eec35b29ed1">✅ What Works</h2><ul><li><p>Push notifications sent from <strong>Firebase Console</strong> → Device <strong>RECEIVES</strong> them</p></li><li><p>This proves FCM is properly configured and the device has a valid token</p></li></ul><hr><h2 class="text-xl" data-toc-id="80584f46-3bb6-4c00-98fe-7ab01f5017b1" id="80584f46-3bb6-4c00-98fe-7ab01f5017b1">❌ What Doesn't Work</h2><p>FCM token is <strong>NOT saved</strong> to Firestore, so my backend server cannot send targeted push notifications.</p><hr><h2 class="text-xl" data-toc-id="33efb5f8-2e74-4ec1-bd44-1c012d8ffbb1" id="33efb5f8-2e74-4ec1-bd44-1c012d8ffbb1">🛠️ Everything I've Tried (ALL FAILED)</h2><h3 class="text-lg" data-toc-id="c8d036e2-b52a-4e4f-ac9b-aa4e3631f76a" id="c8d036e2-b52a-4e4f-ac9b-aa4e3631f76a">1. Custom Action with Debug Code</h3><p>Created <code>saveFcmToken</code> Custom Action that writes <code>fcm_step</code> field to Firestore:</p><p>dart</p><pre class="language-dart"><code class="language-dart">Future saveFcmToken() async {
  await Future.delayed(Duration(seconds: 2));
  
  try {
    final user = FirebaseAuth.instance.currentUser;
    if (user == null) return;
    
    // Debug: Write step to Firestore
    await FirebaseFirestore.instance
        .collection('users')
        .doc(user.uid)
        .set({'fcm_step': 'STEP_1_CALLED'}, SetOptions(merge: true));
    
    String? token = await FirebaseMessaging.instance.getToken();
    
    if (token != null) {
      await FirebaseFirestore.instance
          .collection('users')
          .doc(user.uid)
          .set({'fcm_token': token, 'fcm_step': 'SUCCESS'}, SetOptions(merge: true));
    }
  } catch (e) {
    // Log error to Firestore
  }
}</code></pre><p><strong>Result:</strong> <code>fcm_step</code> field <strong>NEVER appears</strong> in Firestore.</p><h3 class="text-lg" data-toc-id="dded7778-6f20-412d-86e8-51c9af5e6479" id="dded7778-6f20-412d-86e8-51c9af5e6479">2. Added to Multiple Pages' On Page Load</h3><ul><li><p>Added <code>saveFcmToken</code> to On Page Load of Dashboard</p></li><li><p>Added to Homepage</p></li><li><p>Added to Chaomung (first page)</p></li></ul><p><strong>Result:</strong> Still nothing in Firestore.</p><h3 class="text-lg" data-toc-id="48ca8c33-350a-49a2-89ea-64d5ee6d6f83" id="48ca8c33-350a-49a2-89ea-64d5ee6d6f83">3. Added to Initial Actions in main.dart</h3><p><strong>Result:</strong> Still nothing.</p><h3 class="text-lg" data-toc-id="6fd8aa30-67ec-40cc-9c4f-9c820067d0e4" id="6fd8aa30-67ec-40cc-9c4f-9c820067d0e4">4. Created SplashPage WITHOUT WebView</h3><p>Following advice that WebView might interfere with lifecycle:</p><ul><li><p>Created new page <code>SplashPage</code> with <strong>NO WebView</strong> (only Container, Text, Loading indicator)</p></li><li><p>Added On Page Load actions:</p><ol><li><p><code>saveFcmToken</code> (Wait for Action = ON)</p></li><li><p>Wait 2000ms</p></li><li><p>Navigate to main page</p></li></ol></li><li><p>Set <code>SplashPage</code> as Initial Page in App Settings</p></li></ul><p><strong>Result:</strong> Custom Action still doesn't execute. No <code>fcm_step</code> in Firestore.</p><h3 class="text-lg" data-toc-id="dcebd32e-bbec-45ea-a76c-1bf5c140fab2" id="dcebd32e-bbec-45ea-a76c-1bf5c140fab2">5. Simplest Possible Test Action</h3><p>Created the simplest action possible:</p><p>dart</p><pre class="language-dart"><code class="language-dart">Future testAction() async {
  await FirebaseFirestore.instance
      .collection('test_logs')
      .doc('splash_test')
      .set({
        'message': 'Action executed!',
        'time': FieldValue.serverTimestamp(),
      });
}</code></pre><p>Added to SplashPage On Page Load.</p><p><strong>Result:</strong> No document created in <code>test_logs</code> collection.</p><h3 class="text-lg" data-toc-id="f672bd15-ebf3-4665-9e24-438be78eac95" id="f672bd15-ebf3-4665-9e24-438be78eac95">6. Enabled "Allow Scheduling" in Push Notifications Settings</h3><ul><li><p>Settings → Push Notifications → Allow Scheduling → ON</p></li><li><p>Deployment Status: Deployed</p></li></ul><p><strong>Result:</strong> Still no FCM token saved.</p><hr><h2 class="text-xl" data-toc-id="d4444005-71ef-4e23-8bc7-4bc49b7e1140" id="d4444005-71ef-4e23-8bc7-4bc49b7e1140">🤔 Important Context</h2><p><strong>Previously, FCM token WAS being saved automatically!</strong></p><ul><li><p>I didn't have any custom action for saving FCM token</p></li><li><p>Just opened the app → FCM token appeared in Firestore <code>users/{uid}</code> document</p></li><li><p>It was very simple, no complex code needed</p></li><li><p>I accidentally deleted it and can't remember how it was configured</p></li></ul><hr><h2 class="text-xl" data-toc-id="9cc78fbb-3dcc-4ed7-88a2-c7663470a962" id="9cc78fbb-3dcc-4ed7-88a2-c7663470a962">❓ My Questions</h2><ol><li><p><strong>Is there a FlutterFlow setting that AUTOMATICALLY saves FCM token to Firestore?</strong> (Without any custom code)</p></li><li><p><strong>Why do Custom Actions completely fail to execute?</strong> Even the simplest action that just writes to Firestore doesn't work.</p></li><li><p><strong>Does having WebView-only pages affect Custom Action execution?</strong> Even though I created a SplashPage without WebView, actions still don't run.</p></li><li><p><strong>What am I missing?</strong> There must be some configuration or setting I'm overlooking.</p></li></ol><hr><h2 class="text-xl" data-toc-id="49919a32-43e6-4725-b39f-87b1e117547c" id="49919a32-43e6-4725-b39f-87b1e117547c">📊 Current Settings</h2><p><strong>Push Notifications Settings:</strong></p><ul><li><p>Enable Push Notifications: ✅ ON</p></li><li><p>Allow Scheduling: ✅ ON</p></li><li><p>Automatically Prompt Users for Permission: ✅ ON</p></li><li><p>Deployment Status: ✅ Deployed</p></li></ul><hr><h2 class="text-xl" data-toc-id="89d926f8-a46e-45c1-9282-0fd2c985af05" id="89d926f8-a46e-45c1-9282-0fd2c985af05">🙏 Help Needed</h2><p>Has anyone experienced Custom Actions not executing at all? Or knows how to automatically save FCM token without custom code?</p><p>Any help would be greatly appreciated!</p><hr><p><strong>FlutterFlow Version:</strong> Latest (as of April 2026) <strong>Platform:</strong> iOS (TestFlight) <strong>Firebase Services:</strong> Firestore, FCM, Authentication</p>]]></content:encoded>
        </item>
        <item>
            <title><![CDATA[Bonjour à tous]]></title>
            <description><![CDATA[Je m'appelle David, je suis curieux et desireux de developper diverses solution digitale en accord avec les besoins de nos environnements quotidien. J'ai decouvert Flutterflow il y a quelques mois. L'...]]></description>
            <link>https://community.flutterflow.io/introductions-ffgcxlsa/post/bonjour-a-tous-B1uhdzaMZANtEjW</link>
            <guid isPermaLink="true">https://community.flutterflow.io/introductions-ffgcxlsa/post/bonjour-a-tous-B1uhdzaMZANtEjW</guid>
            <dc:creator><![CDATA[David]]></dc:creator>
            <pubDate>Wed, 08 Apr 2026 07:30:29 GMT</pubDate>
            <content:encoded><![CDATA[<p>Je m'appelle David, je suis curieux et desireux de developper diverses solution digitale en accord avec les besoins de nos environnements quotidien. J'ai decouvert Flutterflow il y a quelques mois. L'application est bien faite complete et parfois un peu tordue aussi 😂 😅 mais je m'y amuse beaucoup. </p><p> j'aspire a perfectionner mes connaissances et à developper mon approche vis à vis de FLutteflow. Au plaisir de discuter avec vous</p>]]></content:encoded>
        </item>
        <item>
            <title><![CDATA[🚀 No Stupid Questions Wednesday – Ask Us Anything About FlutterFlow!]]></title>
            <description><![CDATA[Hey FlutterFlow community! 👋

We’re Calda, a mobile and web development agency and FlutterFlow experts. We know how tricky it can be to navigate FlutterFlow, whether you're just starting out or working ...]]></description>
            <link>https://community.flutterflow.io/discussions-dzeand9o/post/no-stupid-questions-wednesday---ask-us-anything-about-flutterflow-vZB3A2ppepmAWLa</link>
            <guid isPermaLink="true">https://community.flutterflow.io/discussions-dzeand9o/post/no-stupid-questions-wednesday---ask-us-anything-about-flutterflow-vZB3A2ppepmAWLa</guid>
            <dc:creator><![CDATA[Dev Calda]]></dc:creator>
            <pubDate>Wed, 08 Apr 2026 06:06:04 GMT</pubDate>
            <content:encoded><![CDATA[<p>Hey&nbsp;FlutterFlow&nbsp;community! 👋</p><p>We’re&nbsp;<strong>Calda</strong>, a mobile and web development agency and&nbsp;<strong>FlutterFlow experts</strong>. We know how tricky it can be to navigate FlutterFlow, whether you're just starting out or working on an advanced project. That’s why we’re continuing&nbsp;with the&nbsp;<strong>"No Stupid Questions Wednesday"</strong>&nbsp;– a space where you can ask&nbsp;<strong>ANY</strong>&nbsp;FlutterFlow-related question without fear.</p><p>💡&nbsp;<strong>How it works:</strong><br>- Every Wednesday, drop your FlutterFlow questions in the thread.<br>- No question is too small, too simple, or too complex.<br>- We (and the awesome community) will do our best to help!</p><p>Whether you're stuck on database setup, UI tweaks, API integration, or just want to bounce off ideas –&nbsp;<strong>this is your space.</strong></p><p>Our website and links for reference:&nbsp;<a class="text-interactive hover:text-interactive-hovered" rel="noopener noreferrer nofollow" href="https://www.thecalda.com/">https://www.thecalda.com/</a></p>]]></content:encoded>
        </item>
        <item>
            <title><![CDATA[Building a simple “printer utility” app in FlutterFlow – looking for ideas]]></title>
            <description><![CDATA[Hi everyone,

I’m working on an idea for a small utility app in Flutter Flow, mainly focused on helping users with basic printer-related tasks.

I actually have a simple website where users can print test...]]></description>
            <link>https://community.flutterflow.io/discussions-dzeand9o/post/building-a-simple-printer-utility-app-in-flutterflow---looking-for-ideas-jUPZMrgUTBgofUg</link>
            <guid isPermaLink="true">https://community.flutterflow.io/discussions-dzeand9o/post/building-a-simple-printer-utility-app-in-flutterflow---looking-for-ideas-jUPZMrgUTBgofUg</guid>
            <dc:creator><![CDATA[Oscar Ritchie]]></dc:creator>
            <pubDate>Wed, 08 Apr 2026 00:47:52 GMT</pubDate>
            <content:encoded><![CDATA[<p>Hi everyone,</p><p>I’m working on an idea for a small utility app in Flutter Flow, mainly focused on helping users with basic printer-related tasks.</p><p>I actually have a simple website where users can print test pages and check if their printer is working, and I’m now thinking about turning that concept into a mobile app for easier access: <a class="text-interactive hover:text-interactive-hovered" rel="noopener noreferrer nofollow" href="https://myprinttest.com/">https://myprinttest.com/</a></p><p>The idea is something like:</p><ul><li><p>A simple app where users can quickly print a test page</p></li><li><p>Basic troubleshooting steps if the printer is not responding</p></li><li><p>Easy-to-use tools for non-technical users</p></li></ul><p>Right now, I’m trying to figure out the best way to implement this in Flutter Flow:</p><ul><li><p>Should I just generate a printable file (PDF/image) and let the device handle printing?</p></li><li><p>Or is there any way to connect directly with printers over Wi-Fi?</p></li><li><p>Would this require a custom backend or API?</p></li></ul><p>Also, if anyone has worked on similar utility apps, I’d love to know what features users actually find useful.</p><p>Thanks in advance ormat everywhere. Next time:</p><ul><li><p>Move link to bottom OR</p></li><li><p>Mention without link in first post, then add link in reply</p></li></ul><p>This keeps your backlink profile natural and safe</p>]]></content:encoded>
        </item>
        <item>
            <title><![CDATA["Validating custom functions code ..." never ending]]></title>
            <description><![CDATA[when adding custom function code, "Custom functions need to be checked for errors. Click here to check for errors." keeps appearing..

"Validating custom functions code ..." never ending..

Can not run ...]]></description>
            <link>https://community.flutterflow.io/ask-the-community-rcglymkn/post/validating-custom-functions-code-never-ending-iBAqZWBdgNa5csO</link>
            <guid isPermaLink="true">https://community.flutterflow.io/ask-the-community-rcglymkn/post/validating-custom-functions-code-never-ending-iBAqZWBdgNa5csO</guid>
            <category><![CDATA[Custom Code]]></category>
            <dc:creator><![CDATA[Yang Chau Lim]]></dc:creator>
            <pubDate>Wed, 08 Apr 2026 00:25:09 GMT</pubDate>
            <content:encoded><![CDATA[<p>when adding custom function code, "Custom functions need to be checked for errors. Click here to check for errors." keeps appearing..</p><p>"Validating custom functions code ..." never ending..<br><br>Can not run test</p>]]></content:encoded>
        </item>
        <item>
            <title><![CDATA["Custom Functions need to be checked for errors" keeps checking my custom functions]]></title>
            <description><![CDATA[like always i saw this custom function error, when i clicked on it, it just keeps checking the custom codes. without even finding any error on my codes coz i already test run lots of times with the ...]]></description>
            <link>https://community.flutterflow.io/discussions-dzeand9o/post/custom-functions-need-to-be-checked-for-errors-keeps-checking-my-custom-xz9l9Aam287Cvux</link>
            <guid isPermaLink="true">https://community.flutterflow.io/discussions-dzeand9o/post/custom-functions-need-to-be-checked-for-errors-keeps-checking-my-custom-xz9l9Aam287Cvux</guid>
            <category><![CDATA[Custom Code]]></category>
            <dc:creator><![CDATA[Md Ikhtier Ahmed]]></dc:creator>
            <pubDate>Wed, 08 Apr 2026 00:00:04 GMT</pubDate>
            <content:encoded><![CDATA[<p>like always i saw this custom function error, when i clicked on it, it just keeps checking the custom codes. without even finding any error on my codes coz i already test run lots of times with the same code.</p><p>can anybody help me on how to fix this issue?</p><figure data-align="center" data-size="best-fit" data-id="Gi56XA9ZmkNicHAjGelHM" data-version="v2" data-type="image"><img data-id="Gi56XA9ZmkNicHAjGelHM" src="https://tribe-s3-production.imgix.net/Gi56XA9ZmkNicHAjGelHM?auto=compress,format"></figure><figure data-align="center" data-size="best-fit" data-id="3LeGvOSHZPqlzEFxcNwje" data-version="v2" data-type="image"><img data-id="3LeGvOSHZPqlzEFxcNwje" src="https://tribe-s3-production.imgix.net/3LeGvOSHZPqlzEFxcNwje?auto=compress,format"></figure>]]></content:encoded>
        </item>
        <item>
            <title><![CDATA[🚀 Curious to hear from the community]]></title>
            <description><![CDATA[ * What’s something you built in FlutterFlow that you originally thought wasn’t possible?

 * Was it a specific feature, integration, or workflow?

 * At what point did it click that you could actually pull it off...]]></description>
            <link>https://community.flutterflow.io/discussions-dzeand9o/post/curious-to-hear-from-the-community-DIqnUcZ6iPpGnCA</link>
            <guid isPermaLink="true">https://community.flutterflow.io/discussions-dzeand9o/post/curious-to-hear-from-the-community-DIqnUcZ6iPpGnCA</guid>
            <dc:creator><![CDATA[Development Calda]]></dc:creator>
            <pubDate>Tue, 07 Apr 2026 14:27:52 GMT</pubDate>
            <content:encoded><![CDATA[<ul><li><p>What’s something you built in FlutterFlow that you originally thought wasn’t possible?</p></li><li><p>Was it a specific feature, integration, or workflow?</p></li><li><p>At what point did it click that you could actually pull it off?</p></li><li><p>What was that moment for you?</p></li></ul>]]></content:encoded>
        </item>
        <item>
            <title><![CDATA[No one can estimate your app in 10 minutes]]></title>
            <description><![CDATA[You jump on a call with team, explain your idea and get “Yeah, it would take 2–3 weeks, around $8K.”
Sounds efficient, but that number is almost always fake.

In our new video, we break down why serious ...]]></description>
            <link>https://community.flutterflow.io/discussions-dzeand9o/post/no-one-can-estimate-your-app-in-10-minutes-k9k0OvuAAIUgcQQ</link>
            <guid isPermaLink="true">https://community.flutterflow.io/discussions-dzeand9o/post/no-one-can-estimate-your-app-in-10-minutes-k9k0OvuAAIUgcQQ</guid>
            <dc:creator><![CDATA[InAppo Developer]]></dc:creator>
            <pubDate>Tue, 07 Apr 2026 10:46:25 GMT</pubDate>
            <content:encoded><![CDATA[<p>You jump on a call with team, explain your idea and get “Yeah, it would take 2–3 weeks, around $8K.”<br>Sounds efficient, but that number is almost always fake.<br><br>In our new video, we break down why serious teams refuse to estimate your product after one quick call and what a real estimation process should look like&gt;&gt;<br><br>🎥 Watch the full video here: <a class="text-interactive hover:text-interactive-hovered" rel="noopener noreferrer nofollow" href="https://www.youtube.com/watch?v=i1cEPRpg4ek">https://lnkd.in/dKaAtEPT</a></p><figure data-align="center" data-size="best-fit" data-id="JhXPki7UYgyaedyqa0mHq" data-version="v2" data-type="image"><img data-id="JhXPki7UYgyaedyqa0mHq" src="https://tribe-s3-production.imgix.net/JhXPki7UYgyaedyqa0mHq?auto=compress,format"></figure>]]></content:encoded>
        </item>
        <item>
            <title><![CDATA[Image widget cannot bind to Firestore string field while Text widget can (fields appear blurred/unselectable)]]></title>
            <description><![CDATA[I am building a FlutterFlow app using a ListView connected to a Firestore collection. I am encountering an issue where the Image widget cannot bind to a valid string field (image URL), even though the...]]></description>
            <link>https://community.flutterflow.io/ask-the-community-rcglymkn/post/image-widget-cannot-bind-to-firestore-string-field-while-text-widget-can-87uCKeahMFfOlbx</link>
            <guid isPermaLink="true">https://community.flutterflow.io/ask-the-community-rcglymkn/post/image-widget-cannot-bind-to-firestore-string-field-while-text-widget-can-87uCKeahMFfOlbx</guid>
            <dc:creator><![CDATA[Community Member]]></dc:creator>
            <pubDate>Tue, 07 Apr 2026 10:00:47 GMT</pubDate>
            <content:encoded><![CDATA[<p>I am building a FlutterFlow app using a ListView connected to a Firestore collection. I am encountering an issue where the Image widget cannot bind to a valid string field (image URL), even though the same field works correctly with Text widgets.</p><h2 class="text-xl" data-toc-id="1d14caa4-17f2-45cd-8ab0-b6eb196016c1" id="1d14caa4-17f2-45cd-8ab0-b6eb196016c1"><strong>Setup:</strong></h2><ul><li><p>Backend: Firebase Firestore</p></li><li><p>Collection: <code>Places</code></p></li><li><p>Fields in each document:</p><ul><li><p><code>name</code> (String)</p></li><li><p><code>image</code> / <code>image_url</code> (String - URL)</p></li><li><p><code>rating</code> (Number)</p></li><li><p><code>city</code> (String)</p></li><li><p><code>favorites</code> (List&lt;String&gt;)</p></li></ul></li><li><p>ListView:</p><ul><li><p>Backend Query: <strong>Collection Query → List of Documents</strong></p></li><li><p>Only one child (Container → Column → widgets)</p></li></ul></li><li><p>Image Widget:</p><ul><li><p>Source: <strong>Network Image</strong></p></li><li><p>Path: Set from Variable</p></li></ul></li></ul><hr><h2 class="text-xl" data-toc-id="e3201520-a8c8-4ed7-bb41-1be04fd9ad88" id="e3201520-a8c8-4ed7-bb41-1be04fd9ad88"><strong>Issue:</strong></h2><p>When attempting to bind the Image widget:</p><ul><li><p>The field <code>image</code> (or <code>image_url</code>) appears <strong>blurred/unselectable</strong></p></li><li><p>Only the following fields are selectable:</p><ul><li><p><code>reference</code></p></li><li><p><code>favorites</code></p></li></ul></li></ul><p>However:</p><ul><li><p>Text widgets CAN successfully bind to:</p><ul><li><p><code>name</code></p></li><li><p><code>image</code> (shows URL correctly)</p></li><li><p>other fields</p></li></ul></li><li><p>If a static URL (e.g., <a class="text-interactive hover:text-interactive-hovered" rel="noopener noreferrer nofollow" href="https://picsum.photos/400/200">https://picsum.photos/400/200</a>) is used, the Image widget works correctly</p></li></ul>]]></content:encoded>
        </item>
    </channel>
</rss>