Hasura GraphQL 102 | Build a Recipe Management App with Flutter

แชร์
ฝัง

ความคิดเห็น • 44

  • @andrefelipechannel
    @andrefelipechannel 3 ปีที่แล้ว +1

    You are using GraphQL like if was using REST. The concept of GraphQL allow our apps to be more performatic. The way you're writing your code, performance is not a strong point. But I love the UI. Follow ahead, you have a good future.

  • @fuser312
    @fuser312 3 ปีที่แล้ว +1

    I just don't understand why two apps? I can't see any use-case where we will need two apps, thats just bad practice and should be avoided even in tutorials, I couldn't continue after you showed that you were using two different flutter projects to do same thing.

    • @CreativeBracket
      @CreativeBracket  3 ปีที่แล้ว

      Ok, it's a single app with two packages. It's a recommended practice to separate concerns which is why I had one package responsible for creating the graphql client with its related operations while the other was solely the Flutter client that imports it.

  • @saulomiqueias4267
    @saulomiqueias4267 3 ปีที่แล้ว +4

    Amazing!! I wanna more hasura + flutter pls. Greetings from Brazil

  • @WikkiOnIlluminati
    @WikkiOnIlluminati 3 ปีที่แล้ว +1

    @48:04 I am stuck on this part. I have followed your steps to comment out the schema but still app is not fetching data from Ingredients.
    Could you help please.

  • @ramsmart8939
    @ramsmart8939 3 ปีที่แล้ว

    Superb and Awesome video on Flutter with Hasura Backend. Please make examples without localhost. Hasura offering a basic server. For the live server also make the same as you are done within this video as schema generates with build_runner.

  • @lamaalrweta8350
    @lamaalrweta8350 3 ปีที่แล้ว +2

    amazing work! could you please do the same tutorials in addition creating accounts for users?

  • @forktrader7870
    @forktrader7870 3 ปีที่แล้ว +1

    material design version on this tutorial. iphone dev not my thing. :/

    • @DionV
      @DionV 2 ปีที่แล้ว

      Easy fix: swap Cupertino for Material. Done. That’s the beauty of Flutter.
      And the point of a tutorial is to give you a starting point from which to build. Don’t like Cupertino, grab the code and change it to Material yourself, and learn more in the process. That’s part of learning how to develop software.

  • @yazilimcikedisi
    @yazilimcikedisi 3 ปีที่แล้ว

    Thanks a lot

  • @alfonsoromero3092
    @alfonsoromero3092 3 ปีที่แล้ว

    great, do a lot more flutter. greetings from Mexico

  • @SumitSharanSatsangi
    @SumitSharanSatsangi 3 ปีที่แล้ว

    Nice video, but please make video with authentication with ferry too.Thanks

  • @jrvidotti
    @jrvidotti 3 ปีที่แล้ว +1

    Oh man, you saved my life! Very clean code... awesome!

  • @marco_di
    @marco_di 2 ปีที่แล้ว

    thanks for your great tutorials... i keep wondering how you created the rm_graphql_client -project. Maybe I missed something, but I couldn't find anything about it

  • @gbp-gamebajanapagega4627
    @gbp-gamebajanapagega4627 2 ปีที่แล้ว

    Why?

  • @gunasekaranpalanisami6182
    @gunasekaranpalanisami6182 3 ปีที่แล้ว

    i try this , but some error,
    Because flutter_tools depends on test >=1.16.0-nullsafety =2.10.0-0

  • @ramsmart8939
    @ramsmart8939 3 ปีที่แล้ว +1

    Before that explain about the concept and UI❤️

  • @ruskface
    @ruskface 3 ปีที่แล้ว

    This is great, unfortunately the ferry build does not run with the files on the git repository. It hangs up on null safety issues... I would love to get some help on this as it appears to be a great solution, but the ferry documentation is pretty sparse ....

    • @CreativeBracket
      @CreativeBracket  2 ปีที่แล้ว

      I've been recommended graphql_flutter pub.dev/packages/graphql_flutter Should save you from doing any code generation

  • @chrisokoriedev
    @chrisokoriedev ปีที่แล้ว

    right off the bat this guy sound Nigerian or Ghanaian

  • @petscutest2055
    @petscutest2055 3 ปีที่แล้ว

    for my backend am using Javascript. so do i need to import path of the backend or not?

    • @CreativeBracket
      @CreativeBracket  3 ปีที่แล้ว

      Pass the url of your GraphQL endpoint to the HttpLink object.

  • @dennyraymond9932
    @dennyraymond9932 3 ปีที่แล้ว

    Great tutorial, may i ask something? i got stuck when running build_runner.
    I got this error
    "[INFO] Running build...
    [SEVERE] ferry_generator:req_builder on lib/src/graphql/schema.graphql:
    FormatException: Invalid UTF-8 byte (at offset 0)
    [SEVERE] ferry_generator:req_builder on lib/src/graphql/schema.graphql:
    FormatException: Invalid UTF-8 byte (at offset 0)" then it get forever loop

    • @CreativeBracket
      @CreativeBracket  3 ปีที่แล้ว

      It says FormatException so there may be an invalid syntax somewhere.

    • @dennyraymond9932
      @dennyraymond9932 3 ปีที่แล้ว

      @@CreativeBracket Ah okay then, will check it later. Thanks!

    • @mkc11267
      @mkc11267 2 ปีที่แล้ว

      Have you fixed this? I have the same issue and i'm starting to lose hope.

  • @박정현-n1s8l
    @박정현-n1s8l 2 ปีที่แล้ว

    Hello. I am enjoying the lecture. I'm cloning right now. "command not found" occurs when running "get-graghql-schema", how can I fix it?

    • @CreativeBracket
      @CreativeBracket  2 ปีที่แล้ว

      Did you do 'npm install -g get-graphql-schema'? www.npmjs.com/package/get-graphql-schema

    • @박정현-n1s8l
      @박정현-n1s8l 2 ปีที่แล้ว

      @@CreativeBracket Yes I did.

    • @milleryoo
      @milleryoo 2 ปีที่แล้ว

      use npx graphql-cli init

  • @sreekumarmenon
    @sreekumarmenon 3 ปีที่แล้ว

    Any reason why you chose ferry over graphql-flutter ?

    • @CreativeBracket
      @CreativeBracket  3 ปีที่แล้ว

      The ferry docs seemed clear to me at the time. But not to worry, I'll cover graphql_flutter soon.

    • @SumitSharanSatsangi
      @SumitSharanSatsangi 3 ปีที่แล้ว

      @@CreativeBracket Thanks, for making video on ferry, can you make a video on ferry with hive/hive_flutter

  • @burakbirer
    @burakbirer 3 ปีที่แล้ว

    wow!