Flutter Privacy Policy Made Easy | Markdown and Dialog

Поделиться
HTML-код
  • Опубликовано: 21 янв 2025

Комментарии • 41

  • @RobertBrunhage
    @RobertBrunhage  4 года назад +4

    Just noticed that the FlatButton could be done in a much simpler way 😅. Create a pull request and show me another way of doing it (GitHub link in the description)!

  • @pritzibeom
    @pritzibeom 3 года назад +5

    hello???? there's an error
    return Markdown(
    data: snapshot.data,
    );

    • @uday-tare
      @uday-tare 3 года назад

      the same error occurs in my
      code too

    • @obviousabsurdity3181
      @obviousabsurdity3181 3 года назад

      Same here, cant find a solution online. Do we need to check for empty data if we make sure we type in our md files properly?

    • @techlangonline6131
      @techlangonline6131 2 года назад

      same here,,,,,did you find a solution?

    • @techlangonline6131
      @techlangonline6131 2 года назад +1

      I finally figured it out guys.....just get rid of the "if" condition! like this
      FutureBuilder(
      future: rootBundle.loadString(mdFileName),
      builder: (BuildContext context, AsyncSnapshot snapshot) {
      return Markdown(
      data: (snapshot.data ?? ' ' ),
      );
      }),

    • @techlangonline6131
      @techlangonline6131 2 года назад

      I also got rid of the .MD condition....you don't need all that!

  • @rydmike
    @rydmike 4 года назад +2

    Thanks Robert, a very useful practical example! 👍

  • @ulhaqanwaar1
    @ulhaqanwaar1 3 года назад +1

    Nice and Clean

  • @iamfunny2155
    @iamfunny2155 4 года назад

    Pls could u tell us how we could implement privacy policy to already made project 🙏🏿😣

  • @rodinsuniga5549
    @rodinsuniga5549 4 года назад +1

    Great video, thanks for this. 👍

  • @kld0093
    @kld0093 4 года назад +1

    Definitely using this, thanks!!!

  • @ugochukwuumerie6378
    @ugochukwuumerie6378 Год назад

    My markdown file contains TOC (table of content), is there support for it?

  • @martinrupertbulquerin228
    @martinrupertbulquerin228 4 года назад +1

    Great tutorial! I learned new things on this. Thanks bro!

  • @EdmundCiegoBelize
    @EdmundCiegoBelize 3 года назад

    Great work dude! Much appreciated.

  • @amirmekk9649
    @amirmekk9649 4 года назад +1

    what's the name of the plugin that shows errors in the same line of editing 🤔

    • @RobertBrunhage
      @RobertBrunhage  4 года назад +1

      ErrorLens, you can find all my extensions here: ruclips.net/video/dN8ZolJmmaA/видео.html

  • @Aeonia92
    @Aeonia92 4 года назад +1

    Thanks for this...I used to use webview_html for loading the terms & conditions but it was not as responsive.

  • @kobbydiscount2635
    @kobbydiscount2635 4 года назад +1

    Such a wonderful tutorial. I have learnt a lot. How do you control the height of the showDialog? The height is weird to me.

  • @arsarsars1able
    @arsarsars1able 4 года назад

    Great video. Learned a lot from it.

  • @alexw650
    @alexw650 4 года назад

    Awesome video. Thank you very much.

  • @raven9965
    @raven9965 4 года назад +1

    what keyboard do you use?

    • @RobertBrunhage
      @RobertBrunhage  4 года назад

      vermillion vortex tab 75 🔥
      Done the following modding:
      Lubed
      New stabilizers which are clipped
      Sound dampening inside

  • @ahmetcubuk4245
    @ahmetcubuk4245 2 года назад

    Hello, I have a social media app. In this application, users become members via e-mail and they give information such as username, password, profile picture. They can share posts with text and pictures and like other posts. While they are using them, I use Firebase for database, storage and authentication. Can this site prepare a valid privacy policy for such activities? And does this privacy and policy apply to every country?

  • @xihuny
    @xihuny 4 года назад +1

    Great tutorial. AboutDialog widget is also very useful.

    • @RobertBrunhage
      @RobertBrunhage  4 года назад +1

      Indeed, didn't know about it until widget of the week 😅

  • @joelmathew7998
    @joelmathew7998 4 года назад +1

    can you make a video that describes more about flutter hackathon and all the processes required to get in the hackathon??

    • @RobertBrunhage
      @RobertBrunhage  4 года назад

      It's open for anyone to join! Just sign up and you will get email instructions I believe 🔥

  • @faridahmadov5991
    @faridahmadov5991 Год назад

    Thank you bro

  • @r-techs1068
    @r-techs1068 4 года назад +2

    Can you make a video on starter projects for flutter

  • @amarpreetsingh857
    @amarpreetsingh857 4 года назад +1

    Hi sir please make a video related to pagination.

    • @amarpreetsingh857
      @amarpreetsingh857 4 года назад +1

      Your video very helpful 😉... Understanding the flutter system

    • @RobertBrunhage
      @RobertBrunhage  4 года назад +1

      I have a old video about that but will probably create a new one soon!

  • @techlangonline6131
    @techlangonline6131 2 года назад

    HOW come.....when I write the Return markdown( data: snapshot.data) it sends me an error "the argument type 'object´ can't be assigned to the parameter type string......the whole code is written like yours.......I only have this issue.....I did not create extra dart files....I did it all in a login.dart..............If I change snapshot.data to "any text" code, it does show the pop up window with the text "any text" but as soon as I write snapshot.data in Markdown return.....It gets the red underlindes and I get the error......please,,,,,help me...

    • @suneelasiddiqui4957
      @suneelasiddiqui4957 2 года назад

      Use 'AsyncSnapshot snapshot' instead of 'snapshot' in the builder of future builder.
      builder: (context, AsyncSnapshot snapshot)

  • @fernan007do
    @fernan007do Год назад

    KapoooOoO

  • @yagocardoso3959
    @yagocardoso3959 2 года назад

    Awesome video. Thank you very much.