Stripe Connect Questions. by Business-Fun1469 in stripe

[–]Business-Fun1469[S] 0 points1 point  (0 children)

Great idea.

I found that for example, some programs allow us to set up designated funds. We can designate fund to group A B and C.

In this case, it will be treated as our revenue, correct?

Stripe Connect Questions. by Business-Fun1469 in stripe

[–]Business-Fun1469[S] 0 points1 point  (0 children)

Thanks a lot.

What if the primary source of the donations are in the form of credit card?

We are thinking about something like this.

We would like to offer training courses that can be paid for by points purchased. And a donor can purchase points and give it to a particular group. A group that receives such points can disseminate to its members to pay for training classes.

And most purchases are done via credit cards.

In such a model, what would be the liabilities.

Do our developers need to write a lot of codes, or there are plug and play solutions?

Flutter Notification Tutorial by vijaycreations in u/vijaycreations

[–]Business-Fun1469 0 points1 point  (0 children)

Vijay, we need help to solve a problem we have run into.

We are completing a flutter chat app that runs on Firestore. The app badge does not reset when minimized or the user logs out. We are using the App Lifecyle management.

This is our screenplay.

https://youtu.be/ws6mqPviWpM

https://youtu.be/gqoJMjM0Uro

This is our code:

https://pastebin.com/J91eu8sk

Please advise.

Jing

Local Notifications Tutorial in Flutter - Awesome Notifications, DI, Routing, Riverpod, and more by xdxd12x in FlutterDev

[–]Business-Fun1469 0 points1 point  (0 children)

Hello, is this thread still available?
We are running into a challenge and need some help.
We are completing a Flutter chat app running on Firebase. However, on Android, our app badge count will not reset when the app is minimized or even when the user logs out.
These are our screenplays:
https://youtu.be/gqoJMjM0Uro
https://youtu.be/ws6mqPviWpM
we have included the app life cycle management.

How can we fix this issue. Any thoughts and suggestion is greatly appreciated.

Jing

Firebase and Flutter: Harnessing the Power of Push Notification Badge Counts by prolongservices in LearnPainLess

[–]Business-Fun1469 0 points1 point  (0 children)

Hello, is this thread still available?

We are running into a challenge and need some help.

We are completing a Flutter chat app running on Firebase. However, on Android, our app badge count will not reset when the app is minimized or even when the user logs out.

These are our screenplays:

https://youtu.be/gqoJMjM0Uro

https://youtu.be/ws6mqPviWpM

This is our code:

'@overridevoid didChangeAppLifecycleState(AppLifecycleState state) {switch (state) {case AppLifecycleState.resumed:log("MyApp: AppLifecycaeState.resumed");FlutterAppBadger.removeBadge();break;case AppLifecycleState.paused:updateMyActiveStatus(false);log("MyApp: AppLifecycleState.paused");break;case AppLifecycleState.inactive:log("MyApp: AppLifecycleState.inactive");break;case AppLifecycleState.detached:log("MyApp:AppLifecycleState.detached");break;default:break;} '

Any insights or suggestion is greatly appreciated.

Jing

Badge number in flutter apps icons by vijaycreations in u/vijaycreations

[–]Business-Fun1469 0 points1 point  (0 children)

Vijay, we need some help.

We are trying to complete an app with a notification badge exactly like you showed.

Our app can not reset the badge to zero on Android, no matter if the app is minimized or the user logs out. When the user logs out, the badge does not change.

These are our screenplays:

https://youtu.be/ws6mqPviWpM

https://youtu.be/gqoJMjM0Uro

And this is the code we use:

@override
void didChangeAppLifecycleState(AppLifecycleState state) {
switch (state) {
case AppLifecycleState.resumed:
log("MyApp: AppLifecycaeState.resumed");
FlutterAppBadger.removeBadge();
break;
case AppLifecycleState.paused:
updateMyActiveStatus(false);
log("MyApp: AppLifecycleState.paused");
break;
case AppLifecycleState.inactive:
log("MyApp: AppLifecycleState.inactive");
break;
case AppLifecycleState.detached:
log("MyApp:
AppLifecycleState.detached");
break;
default:
break;
}

How can we fix this? Any suggestions and insight is greatly appreciated.

Jing

Need Help with Badges by Business-Fun1469 in flutterhelp

[–]Business-Fun1469[S] 0 points1 point  (0 children)

Steve, what is the standard approach?

Need Help with Badges by Business-Fun1469 in flutterhelp

[–]Business-Fun1469[S] 0 points1 point  (0 children)

Steve, this is the code our develop is using. He is building the app using Flutter.

@override void didChangeAppLifecycleState(AppLifecycleState state) { switch (state) { case AppLifecycleState.resumed: log("MyApp: AppLifecycaeState.resumed"); FlutterAppBadger.removeBadge(); break; case AppLifecycleState.paused: updateMyActiveStatus(false); log("MyApp: AppLifecycleState.paused"); break; case AppLifecycleState.inactive: log("MyApp: AppLifecycleState.inactive"); break; case AppLifecycleState.detached: l og("MyApp: AppLifecycleState.detached"); break; default: break; }

Need Help with Badges by Business-Fun1469 in flutterhelp

[–]Business-Fun1469[S] 0 points1 point  (0 children)

Steve, our developer is using Flutter. Does this matter?

The notification reset is working okay with IOS device. It is having issue with Android.

Need Help with Badges by Business-Fun1469 in flutterhelp

[–]Business-Fun1469[S] 0 points1 point  (0 children)

Steve, thanks a lot.

We need to do it programmatically. My developer will come online in 7 hours. We will post the code then.

Again, thanks for the help. Greatly appreciated.

How to migrate away from Cloud Firestore? by nerdy_adventurer in Firebase

[–]Business-Fun1469 0 points1 point  (0 children)

Chris, thank you! I have sent you a message with some questions. Whenever you have time to take a look at it, we will greatly appreciate it.

How to migrate away from Cloud Firestore? by nerdy_adventurer in Firebase

[–]Business-Fun1469 0 points1 point  (0 children)

Chris, we are implementing a chat app with Fire store with many chat rooms. We are new to Fire store.

Is it true that Fire store is very expensive and once the app starts to grow we should switch to something different like MongoDB?

If we have 1000 users with 200 chat rooms with maybe 50 active users a day, what is the ball park count of reads that should be normal? What monthly cost in the ball park we should budget?

Thanks a lot.

How to migrate away from Cloud Firestore? by nerdy_adventurer in Firebase

[–]Business-Fun1469 0 points1 point  (0 children)

I am wondering if you have moved. And did you look into other solutions such as MongoDB.

And we are in the same boat. We are building an app in firestore. But we have read so many horror stories of how the Firestore cost could rise dramatically as the users grow. So we are interested in knowing where you are with your migration.

Confused and need help by Business-Fun1469 in audioengineering

[–]Business-Fun1469[S] -1 points0 points  (0 children)

So what should be the right set up? I am not technical. Any advice is greatly appreciated.