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)!
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 ?? ' ' ), ); }),
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?
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...
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)!
hello???? there's an error
return Markdown(
data: snapshot.data,
);
the same error occurs in my
code too
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?
same here,,,,,did you find a solution?
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 ?? ' ' ),
);
}),
I also got rid of the .MD condition....you don't need all that!
Thanks Robert, a very useful practical example! 👍
Awesome, glad it helped :)
Nice and Clean
Pls could u tell us how we could implement privacy policy to already made project 🙏🏿😣
Great video, thanks for this. 👍
Definitely using this, thanks!!!
My markdown file contains TOC (table of content), is there support for it?
Great tutorial! I learned new things on this. Thanks bro!
Happy to help! :)
Great work dude! Much appreciated.
what's the name of the plugin that shows errors in the same line of editing 🤔
ErrorLens, you can find all my extensions here: ruclips.net/video/dN8ZolJmmaA/видео.html
Thanks for this...I used to use webview_html for loading the terms & conditions but it was not as responsive.
Such a wonderful tutorial. I have learnt a lot. How do you control the height of the showDialog? The height is weird to me.
Great video. Learned a lot from it.
Awesome video. Thank you very much.
what keyboard do you use?
vermillion vortex tab 75 🔥
Done the following modding:
Lubed
New stabilizers which are clipped
Sound dampening inside
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?
Great tutorial. AboutDialog widget is also very useful.
Indeed, didn't know about it until widget of the week 😅
can you make a video that describes more about flutter hackathon and all the processes required to get in the hackathon??
It's open for anyone to join! Just sign up and you will get email instructions I believe 🔥
Thank you bro
Can you make a video on starter projects for flutter
Have written it down!
Hi sir please make a video related to pagination.
Your video very helpful 😉... Understanding the flutter system
I have a old video about that but will probably create a new one soon!
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...
Use 'AsyncSnapshot snapshot' instead of 'snapshot' in the builder of future builder.
builder: (context, AsyncSnapshot snapshot)
KapoooOoO
Awesome video. Thank you very much.