Flutter Tutorial - In App Rating For AppStore & PlayStore - Rate My App

  Рет қаралды 19,975

HeyFlutter․com

HeyFlutter․com

Күн бұрын

Пікірлер: 56
@HeyFlutter
@HeyFlutter 2 жыл бұрын
This might help you :) 👉 12 Week Flutter Training from Newbie to Expert: heyflutter.com Source Code: github.com/JohannesMilke/rate_my_app_example Native Splash Screen Tutorial: kzbin.info/www/bejne/bn6oaXawpshghcU Create Flutter Project For App Stores Tutorial: kzbin.info/www/bejne/apeUcoJjm5Kdj7M QR Code Scanner App Tutorial: kzbin.info/www/bejne/kGSViKaLnrSYndU Barcode Scanner App Tutorial: kzbin.info/www/bejne/e6vdqWObfqdnja8 Onboarding UI Screen Tutorial: kzbin.info/www/bejne/eYLPcmWmYpKie8k Date Picker & Time Picker Tutorial: kzbin.info/www/bejne/l5DJeKavrN5_b5I Face ID - Local Auth Tutorial: kzbin.info/www/bejne/jXrOlZablrSIpNU Fingerprint - Local Auth Tutorial: kzbin.info/www/bejne/p4XYh6iofNuXmK8 App Internationalization Tutorial: kzbin.info/www/bejne/kKiXfKKlp7urnck Migrate App To Null Safety Tutorial: kzbin.info/www/bejne/fX3RgqOefc5keLs Null Safety In 5 Minutes Tutorial: kzbin.info/www/bejne/h5C6naKDg7CCobc
@kECAnuragPal
@kECAnuragPal 3 жыл бұрын
liked and subscribed......great job......it took me a day to implement this whole package and understand it...tommorrow i woll conntect it with firebase.....faced some difficulties...solved those errors...thats what coders do...i m new....love u....thanks........god bless you....by your voice i can say u r a good person and hardworking too......world need people like you
@BB-fg9ed
@BB-fg9ed 2 жыл бұрын
You make simple things complex
@abbasjafary3443
@abbasjafary3443 2 жыл бұрын
Very excellent and really clear and understandable. Thank you very much
@HeyFlutter
@HeyFlutter 2 жыл бұрын
You’re most welcome, abbas jafary! 🙂
@denniszenanywhere
@denniszenanywhere 3 жыл бұрын
This is a great channel. Thanks for doing this. Can you do a ranking app, too, or something like product hunt? What would be the building blocks for it?
@denniszenanywhere
@denniszenanywhere 3 жыл бұрын
@@HeyFlutter Thanks for responding. I was thinking of doing something like ranker.com. www.ranker.com/crowdranked-list/greatest-rock-songwriters-of-all-time?ref=browse_rerank&l=1 Being able to upvote or downvote a top 10 listing and with the highest upvotes being on top. People would just need to participate in it.
@letmedoit.
@letmedoit. 3 жыл бұрын
Thanks sir for making this great video ⭐⭐⭐⭐⭐
@yaya3975
@yaya3975 3 жыл бұрын
👍👍👍GOOD tutorial video.🎉🎉🎉 Plz create in app update tutorial also. 🙏🙏🙏
@sanjibdutta9270
@sanjibdutta9270 3 жыл бұрын
Very helpful 🙏. Can you please include LaTex in your quiz app for math, physics equations.
@BrYarDJ
@BrYarDJ 3 жыл бұрын
nice, but do you have video about( favorite list or word ) ?
@TenzinThinley
@TenzinThinley 3 жыл бұрын
Super, milke can you please make a video on flutter non consumable inapp purchase? Thank you
@TenzinThinley
@TenzinThinley 3 жыл бұрын
@@HeyFlutter as expected. Gracias
@АлександрИванов-ю8с8г
@АлександрИванов-ю8с8г 3 жыл бұрын
Thank for you work. I am a new in development. I have my second client now and he need to add watermark by finger to any place in image and then save this image with watermark to folder. Can you give me advice how i can do it? Sorry for my english )
@shahidmasoud2270
@shahidmasoud2270 3 жыл бұрын
I am loving ur tutorial bro....can u do one tuturial for how to add clients data using json and show data in the app??? This is the most of developers need
@jiren8991
@jiren8991 3 жыл бұрын
Here's the code: import 'dart:convert'; import 'package:http/http.dart' as http; class User{ String name, dob, email; User(this.name, this.email, this.dob); User.fromResponse(resp) => User(resp.data['name'], resp.data['dob'], resp.data['email']); } void main() => runApp(MyApp()); class MyApp extends StatelessWidget{ Future getFromJson() async { var apiKey = "paste your API key here"; String apiUrl = "www.fakejson.com/$apiKey"; User user; await http.get(apiUrl).then((response) => user = User.fromResponse(response)); return user; } @override Widget build(BuildContext context) => Scaffold( appBar: AppBar(title: Text(getting json)), body: FutureBuilder( future: getFromJson(), builder: (context, snap){ if(!snap.hasData) return CircularProgressIndicator(); return Column( children: [ Text(snap.data.name), Text(snap.data.dob), Text(snap.data.email) ] ); } ) ); }
@jiren8991
@jiren8991 3 жыл бұрын
If there's any problem related to flutter coding ask me, I'll try my level best to help
@shahidmasoud2270
@shahidmasoud2270 3 жыл бұрын
@@jiren8991 thankq bro it was really helpful
@shahidmasoud2270
@shahidmasoud2270 3 жыл бұрын
@@jiren8991 could u send ur telgram id or Instagram id if at all I come accroos doubts I will ask u
@jiren8991
@jiren8991 3 жыл бұрын
@@shahidmasoud2270 fawadawan1832017 is my instagram id
@NuwagabaDemiano-x8z
@NuwagabaDemiano-x8z 11 ай бұрын
5 star ,this is the best website
@HeyFlutter
@HeyFlutter 11 ай бұрын
Thank you, @user-xe2gr3vu9i! 🙂
@souvikbanerjee1324
@souvikbanerjee1324 3 жыл бұрын
please make a tutorial on advertisements also!!
@numanarif2597
@numanarif2597 3 жыл бұрын
Please do flutter in-app-update pop up tutorial
@cameronarnold511
@cameronarnold511 2 жыл бұрын
Thank you for the tutorial! I was wondering how do we pass in the RateAppInitWidget if we are using a route generator with MaterialPageRoute which takes a builder: (context) ?
@jiren8991
@jiren8991 3 жыл бұрын
Please do make a video on agora_rtc_engine in flutter. Your content is comprehensive yet still easier to understand.
@jiren8991
@jiren8991 3 жыл бұрын
@@HeyFlutter please make a video on it ASAP
@shameemckprogbiz
@shameemckprogbiz Жыл бұрын
When will your rating be automatically placed as a rating in the Play Store?
@HeyFlutter
@HeyFlutter Жыл бұрын
Thank You @shameemckprogbiz! Follow this link: support.google.com/googleplay/android-developer/answer/138230?hl=en I hope you will get your answer 🙂
@adarshneeds
@adarshneeds 2 жыл бұрын
Please create video on in app update
@guddisAlex
@guddisAlex 3 жыл бұрын
Hey, the custom star rating only works for android, am I right? Because on iOS it will always be the standard dialog no matter how I configure it...
@gouravkolhatkar3623
@gouravkolhatkar3623 3 жыл бұрын
Please can you make video on in_app_purchase package.
@gouravkolhatkar3623
@gouravkolhatkar3623 3 жыл бұрын
@@HeyFlutter ❤️❤️❤️
@rv9570
@rv9570 3 жыл бұрын
Hi Johannes, Can you please make a video on app subscriptions like monthly yearly etc on play store and ios. For example I have app which calculate some specific things and I want that user can use it for 7 days free trial and there after when user open the app they should pop up to subscribe with the provided subscription. This should run time to time. According to the subscription validity, It will be a great help if you can make a step by step video tutoria on this feature.. Really appreciate your help. Thanks in advance.
@andreashadjithoma1410
@andreashadjithoma1410 Жыл бұрын
Can you open the stores for rating with pre-filled stars and comments that the user already provided within the app?
@HeyFlutter
@HeyFlutter Жыл бұрын
Thanks for the idea @andreashadjithoma1410 😀, i have added it in my list of future videos
@slx3291
@slx3291 3 жыл бұрын
Hey Johannes , i wanna implement this inside my app as well my main.dart file has is home: SplashPage( ) so how can i add RateAppInitWidget( ) in home and make this redirct users to my splashpage normally, this is my first question, my second question as well is it important to implment homepage class in main.dart file ! as all i want from this package is to show the customer this rate dialouge after 2 min launches so is it possiable to remove this homepage from main.dart file ?
@shei69
@shei69 3 жыл бұрын
Hello, When is the nfc tutorial coming out... Waiting on it 🙂
@thetmyatnoe
@thetmyatnoe 2 жыл бұрын
In star in-app rating dialog, in my testing, cancel button still going to playstore app. I used this onWillScope that returns true. Please let me know how to solve
@thetmyatnoe
@thetmyatnoe 2 жыл бұрын
@@HeyFlutter Thank you for your reply, I opened issue on your source code on git hub.
@yogeshbhati1359
@yogeshbhati1359 3 жыл бұрын
Is it possible to rate application directly within the app for android without redirecting user to play store?
@yogeshbhati1359
@yogeshbhati1359 3 жыл бұрын
@@HeyFlutter Thank you for quick response, I really enjoy your videos, Let me know suggestion if I need to show rating and comment popup when user open the app 5th time, after that it show's up again the 15th time they're on the app and then the 25th time if they haven't rated the app. I want user to give actual rating and comment(not local) from inside the app which will be posted on play store or app store without redirecting to playstore or appstore.
@zakblacki
@zakblacki 2 жыл бұрын
How to make user put stars then comment both at once (you did them separately) so it's a little confusing.
@zakblacki
@zakblacki 2 жыл бұрын
@@HeyFlutter also the remindDays is not working when user press "Maybe Later" it does not show again.
@muhammadyusoffjamaluddin
@muhammadyusoffjamaluddin 3 жыл бұрын
12:40 Google translate: ... if he has not raided your app. Me: Wow an Intense User. Consider will use this package 😂
@jzdev8462
@jzdev8462 2 жыл бұрын
is forwarding the user to the play store only if he chooses 4 or 5 starts no longer supported or what?. i downloaded your code and I'm taken directly to the playstore to rate the app there
@jzdev8462
@jzdev8462 2 жыл бұрын
@@HeyFlutter sorry . I Downloaded your code from github to try it out. But when I click on rate button I'm taking directly to the app page on google play . I can't do InApp review then be taken to the app page in google play if a condition was met like 4 stars . in the code you have on github the moment I click rate button get directed to play store
@Iamilyas4
@Iamilyas4 Жыл бұрын
why i can't join to your 12 weeks flutter course
@HeyFlutter
@HeyFlutter Жыл бұрын
Thank You @programming-vs-coding. You can apply on heyflutter.com and then we see individually if this 12 weeks Flutter training is for you.
@Iamilyas4
@Iamilyas4 Жыл бұрын
@@HeyFlutter i already applied it and i really love your teaching method , thanks
@raphaeljaggerd3585
@raphaeljaggerd3585 3 жыл бұрын
Dude i'm loving the content bruh. Do you know how to do subscriptions like onlyfans or patreon?
@raphaeljaggerd3585
@raphaeljaggerd3585 3 жыл бұрын
@@HeyFlutter Okay. Thanks for the great content anyway
@ahmedatcha6326
@ahmedatcha6326 3 жыл бұрын
First comment... just to say thank you
@NuwagabaDemiano-x8z
@NuwagabaDemiano-x8z 11 ай бұрын
5 star ,this is the best website
@HeyFlutter
@HeyFlutter 11 ай бұрын
Thank you, @user-xe2gr3vu9i! 🙂
Flutter Tutorial - Reorderable ListView - Move List Items
7:18
HeyFlutter․com
Рет қаралды 13 М.
бабл ти гель для душа // Eva mash
01:00
EVA mash
Рет қаралды 6 МЛН
Family Love #funny #sigma
00:16
CRAZY GREAPA
Рет қаралды 30 МЛН
СОБАКА И  ТРИ ТАБАЛАПКИ Ч.2 #shorts
00:33
INNA SERG
Рет қаралды 1,7 МЛН
I tricked MrBeast into giving me his channel
00:58
Jesser
Рет қаралды 27 МЛН
Flutter | In app review
7:44
CodeReviewIo
Рет қаралды 7 М.
Flutter open Playstore or Appstore - Store Redirect package - Rate my App
5:59
Flutter Privacy Policy Made Easy | Markdown and Dialog
16:59
Robert Brunhage
Рет қаралды 13 М.
Deep dive into Flutter deep linking
13:22
Flutter
Рет қаралды 40 М.
In App Rating Bar in Flutter
18:43
TDevelopers
Рет қаралды 851
Flutter Tutorial - ImageCropper - Pick & Crop Images
14:22
HeyFlutter․com
Рет қаралды 29 М.
DRM explained - How Netflix prevents you from downloading videos?
18:17
Mehul - Codedamn
Рет қаралды 129 М.
бабл ти гель для душа // Eva mash
01:00
EVA mash
Рет қаралды 6 МЛН