Full Introduction into Flutter Amplify - Amplify CLI - Amplify Authentication - DataStore

  Рет қаралды 16,456

Flutter Explained

Flutter Explained

Күн бұрын

Пікірлер: 40
@RunEthernet
@RunEthernet 2 жыл бұрын
If you want to skip the registration confirmation, you an do so by adding a lambda to the Pre-Signup trigger in cognito. In that lambda you an mark the user as confirmed with the following flag on the response: event.response.autoConfirmUser = true; Hope that helps. Thanks for the time making this tutorial!!
@FlutterExplained
@FlutterExplained 2 жыл бұрын
Thank you very much! I will pin this comment and hopefully it will help everyone along the way.
@jrheisler
@jrheisler 3 жыл бұрын
As always, great walk through. Can't wait to see where this all goes.
@garyhunter44
@garyhunter44 3 жыл бұрын
You cover a lot of material & have a great way of explaining things. Thanks! Can't wait for AWS to bring Amplify packages up to production quality
@RobertBrunhage
@RobertBrunhage 3 жыл бұрын
Great showcase of Amplify, love the explainations 😊
@FlutterExplained
@FlutterExplained 3 жыл бұрын
Glad you liked it!
@vanhelsing4454
@vanhelsing4454 3 жыл бұрын
Wow! This is so timely, I just created aws account earlier today to try amplify. I just had instal cli so I will watch this one before goin in again
@FlutterExplained
@FlutterExplained 3 жыл бұрын
Amazing :) tell me about your experience if you have started with Amplify.
@vanhelsing4454
@vanhelsing4454 3 жыл бұрын
Definitely!
@gregorysamaras7919
@gregorysamaras7919 3 жыл бұрын
I would love to see a otp passwordless login with phone Keep up the good work!
@gumdum6764
@gumdum6764 3 жыл бұрын
Good walkthrought, thanks for the upfront explanation 👌
@FlutterExplained
@FlutterExplained 3 жыл бұрын
No worries, I hope it helps you getting started with Amplify :)
@Hassan-kp5cu
@Hassan-kp5cu 3 жыл бұрын
Great video. Is it a glitch at 15:06?
@stefaandeconinck1531
@stefaandeconinck1531 3 жыл бұрын
Thx Max, a very good explanation. I for sure will test it, once it’s out of Alpha
@FlutterExplained
@FlutterExplained 3 жыл бұрын
Sounds like a great plan :)
@manjeetkumar-su3bq
@manjeetkumar-su3bq 3 жыл бұрын
thankyou soo much for such tutorials really very valuable :)
@FlutterExplained
@FlutterExplained 3 жыл бұрын
I very glad that you like them :)
@FlutterExplained
@FlutterExplained 3 жыл бұрын
Flutter Amplify is really mighty and I hope I could help you with the start of the whole topic.
@hero.created
@hero.created 3 жыл бұрын
you definitely did, I was just about to give up on amplify until I found your video. Thank you very much!
@ManoVikram
@ManoVikram 3 жыл бұрын
Hey, the AWS Amplify pub package is not null-safe now. But my Flutter SDK is null-safe. Will they both work together? Is there a way to use AWS with my Flutter app without AWS Amplify?
@FlutterExplained
@FlutterExplained 3 жыл бұрын
That will work but you will not have sound null saftey ness
@ShankarManickavasagam5032
@ShankarManickavasagam5032 3 жыл бұрын
This is really a more informative video and will help mobile developers to forget abt backend. We can easily manage it. Thanks for the tutorial. In your tutorial, you store and retrieve blogs data only. But users info are maintained in User management. Does it have any connection or do we need to store users info in Content also?
@abhaychandavar1766
@abhaychandavar1766 3 жыл бұрын
how to paginate the data being queried? I read through the docs and found this: List posts = await Amplify.DataStore.query(Post.classType, pagination: new QueryPagination(page:0, limit:100)); but I'm not able to invoke QueryPagination, please help me out
@nouredineyoussouf4843
@nouredineyoussouf4843 2 жыл бұрын
I have a probleme after i excute apmlify init i can't see my project uploaded on could(aws amplify) , in the IAM user the number of the role changes by two everytime i executed amplify init on my flutter project folder. Please help me
@vinothkumarm9066
@vinothkumarm9066 3 жыл бұрын
How to integrate with flutter web amplify? Is it possible?
@jay5929
@jay5929 3 жыл бұрын
Amplify doesn't support web, at least for now.
@vinothkumarm9066
@vinothkumarm9066 3 жыл бұрын
Thanks
@devarena9130
@devarena9130 3 жыл бұрын
When I used data store with cognito auth instead of api key my flutter app crashes...I have seen others as well reporting this with no solution...is there lack of support for data store with cognito auth?
@aaashish__
@aaashish__ 3 жыл бұрын
How can I use AWS Amplify for Realtime Chat in Flutter? I don't seem to find exact resources for that.
@niazmuhammad2713
@niazmuhammad2713 2 жыл бұрын
how we can get the servers status and number using amplify
@jay5929
@jay5929 3 жыл бұрын
FYI, if bugs appear when you run the app in chrome, Amplify doesn't support web, at least for now. Hope this saves you some scratch on the head.
@mafzal644
@mafzal644 3 жыл бұрын
Great 👌
@FlutterExplained
@FlutterExplained 3 жыл бұрын
Glad you like it :) it is very detailed
@codemoor
@codemoor 3 жыл бұрын
I someone has errors on models files you should enable null safety by creating json file inside amplify directory by this name cli..json and past this in the file { "features": { "graphQLTransformer": { "addMissingOwnerFields": true, "validateTypeNameReservedWords": true, "useExperimentalPipelinedTransformer": false, "enableIterativeGSIUpdates": false }, "frontend-ios": { "enableXcodeIntegration": true }, "auth": { "enableCaseInsensitivity": true, "useInclusiveTerminology": true, "breakCircularDependency": true }, "codegen": { "useAppSyncModelgenPlugin": true, "enableDartNullSafety":true } } } and delete the old models and try again using this command : amplify codegen models
@Simon-tv8lq
@Simon-tv8lq 3 жыл бұрын
I think it is a challenge for people to choose Amplify than Firebase.
@FlutterExplained
@FlutterExplained 3 жыл бұрын
I believe so, too. As I stated I think people who are already in the AWS Infrastructure will love the possiblity to switch to AWS Amplify.
@mqhamdam
@mqhamdam 3 жыл бұрын
I just recommend do not use amplify with flutter. The packages that needs to connect app and amplify are need to be updated(null safety error). And even Amplify CLI does not work good. The main reason is amplify and flutter are fresh technologies so it would be hard to find solution if u got some bugs or smels.
@goldenlife6166
@goldenlife6166 3 жыл бұрын
Im not getting the email code,wthat are the triggeres that i need to set
@FlutterExplained
@FlutterExplained 3 жыл бұрын
I did not set any triggers for them, they just appeared as soon I registered, maybe the amplify team has already changed it.
@goldenlife6166
@goldenlife6166 3 жыл бұрын
Have a great day
SonarQube - Code Quality and Code Security - Code Quality Gates
16:49
Flutter Explained
Рет қаралды 44 М.
AWS Modern Apps - AWS Amplify with Flutter
33:16
Matt Coles
Рет қаралды 25 М.
Кәсіпқой бокс | Жәнібек Әлімханұлы - Андрей Михайлович
48:57
Will A Basketball Boat Hold My Weight?
00:30
MrBeast
Рет қаралды 102 МЛН
Seja Gentil com os Pequenos Animais 😿
00:20
Los Wagners
Рет қаралды 42 МЛН
SISTER EXPOSED MY MAGIC @Whoispelagheya
00:45
MasomkaMagic
Рет қаралды 13 МЛН
Why Agent Frameworks Will Fail (and what to use instead)
19:21
Dave Ebbelaar
Рет қаралды 75 М.
Flutter AWS Amplify Authentication - Auth Cognito
12:55
Tadas Petra
Рет қаралды 16 М.
React Crash Course | Learn React Quickly | In 80 Minutes
1:17:07
WolfDenCode
Рет қаралды 2,1 М.
Do NOT Learn Kubernetes Without Knowing These Concepts...
13:01
Travis Media
Рет қаралды 309 М.
Role-Based Authentication in React (Complete Tutorial)
26:31
Cosden Solutions
Рет қаралды 29 М.
35 Flutter Tips That Will Change Your Life
10:53
Flutter Mapp
Рет қаралды 307 М.
The Tech I’m Learning and Why
27:25
Ben Davis
Рет қаралды 10 М.
Automate your Testing on Devices with Flutter Integration Testing
20:33
Flutter Explained
Рет қаралды 49 М.
Кәсіпқой бокс | Жәнібек Әлімханұлы - Андрей Михайлович
48:57