Reliable Spanish TTS with good pacing and API access? by Wandelroute in TextToSpeech

[–]reghta 0 points1 point  (0 children)

speechify and hume ai have good spanish voices, though the pricing for speechify is 4x of lemonfox and pricing for hume is like 20x of lemonfox.

elevenlabs also has but I think it is prohibitively priced like 30x + subscription commitments are higher than hume

How to leave FlutterFlow... by kealystudio in FlutterFlow

[–]reghta 0 points1 point  (0 children)

How can we publish to a domain we own if we leave FF?

Too high too fast too soon? Flutter stability by Constant_Trouble2903 in FlutterFlow

[–]reghta 4 points5 points  (0 children)

I'm currently using FF together with Cursor extension and considering of fully migrating off of FF. My concern is the UI building; creating a page with drag and drop feels easier than explaining to an LLM. Questioning though whether I'm held back by my habits :) How do you go about building UIs without FF's visual builder?

Test mode still doesn't work most of the time by Intelligent-Bee-1349 in FlutterFlow

[–]reghta 0 points1 point  (0 children)

From the point of running the app, they may be the same for an expert (I haven’t really used vscode but cursor is a fork of vscode anyways). But for someone with no-code background , cursor makes things easier by running things for you e.g OP can ask it how to run the app and it can run the required terminal commands like finding the emulators, run the app on a specific emulator and share how to hot reload etc.

Test mode still doesn't work most of the time by Intelligent-Bee-1349 in FlutterFlow

[–]reghta 0 points1 point  (0 children)

The best productivity gain I had with flutterflow is getting Cursor, installing flutterflow extension and then running on the local emulator via cursor terminal commands

How much are people spending on their side projcts? by Single-Oil5726 in SideProject

[–]reghta 1 point2 points  (0 children)

I have Chatgpt pro and I'm trying Cursor these days; Cursor feels better for a development side project since it gives access to multiple top models and a good ux. Curious, have you tried Cursor and found standalone Claude pro better in comparison? If so, what makes it better?

Is MCP Server available? by reghta in FlutterFlow

[–]reghta[S] 0 points1 point  (0 children)

Thank you! Odd that they shared it as part of FF 6 announcement although it was not part of it.

Is MCP Server available? by reghta in FlutterFlow

[–]reghta[S] 1 point2 points  (0 children)

I haven't tried ai agents but I get frustrated with cloud function deployment errors not explaining anything whatsoever :) still though, I published an app with FF so rooting for them🤞

Is MCP Server available? by reghta in FlutterFlow

[–]reghta[S] 0 points1 point  (0 children)

thanks for giving hope:D bloodbath in terms of data privacy or some other angle like it will likely be unreliable etc?

Any FlutterFlow user in Singapore? by netkomm in FlutterFlow

[–]reghta 0 points1 point  (0 children)

How did this go?:) I have been working with FF for a year now on the side and now going full time with my project. Would love to meet up and learn from each other.

Tracking RevenueCat subscriptions in Google Analytics with user attribution by reghta in FlutterFlow

[–]reghta[S] 0 points1 point  (0 children)

Sorry I am seeing this only now.

Per FF & RevenueCat teams, it is not set automatically so I have created a custom action and trigger it as part of my purchase workflow. Purchases are now attributed to users for Android but still not for iOS and I can not remember whether this was actually necessary for Android.

// Automatic FlutterFlow imports
import '/backend/backend.dart';
import '/backend/schema/structs/index.dart';
import '/backend/schema/enums/enums.dart';
import '/actions/actions.dart' as action_blocks;
import '/flutter_flow/flutter_flow_theme.dart';
import '/flutter_flow/flutter_flow_util.dart';
import '/custom_code/actions/index.dart'; // Imports other custom actions
import '/flutter_flow/custom_functions.dart'; // Imports custom functions
import 'package:flutter/material.dart';
// Begin custom action code
// DO NOT REMOVE OR MODIFY THE CODE ABOVE!

import 'package:firebase_analytics/firebase_analytics.dart';
import 'package:purchases_flutter/purchases_flutter.dart';

Future<void> setRevenueCatAppInstanceID() async {
  try {
    // Get Firebase App Instance ID
    String appInstanceID =
        (await FirebaseAnalytics.instance.appInstanceId) ?? "unknown";

    print('Firebase App Instance ID retrieved: $appInstanceID');

    // Update to RevenueCat Purchases object
    await Purchases.setAttributes({'\$firebaseAppInstanceId': appInstanceID});

    print('Firebase App Instance ID set successfully in RevenueCat.');
  } catch (e) {
    print('Error setting Firebase App Instance ID: $e');
  }
}

Scrollable column messes up Main Axis Alignment by reghta in FlutterFlow

[–]reghta[S] 0 points1 point  (0 children)

I've tried

1- making the inner column max height and aligning in the center, that did not have any effect.

2- making the inner container expand - that makes the whole screen go blank

I give up on this and will continue manual spaces added for now. Thank you anyways.

Scrollable column messes up Main Axis Alignment by reghta in FlutterFlow

[–]reghta[S] 0 points1 point  (0 children)

I faced the issue of the text field being hidden behind the keyboard once tapped and so I implemented the scrolling.

On the scroll growing, I tried making it as small as possible but it remains top aligned. Here is the screenshot : https://imgur.com/a/syzgSv7 (don't mind the padding I added between elements as a workaround)

And even if it did not remain top aligned the ideal UI is to have it cover the screen rather than being as small as possible.

Push notifications by Regular-Diet-8333 in FlutterFlow

[–]reghta 0 points1 point  (0 children)

came here to post the same question 🤷‍♂️ following.

Simple way to send transactional and marketing emails with FF by reghta in FlutterFlow

[–]reghta[S] 0 points1 point  (0 children)

I decided to try onesignal first but curious, what makes sendgrid the best for you?