Flutter How to save a file locally with Flutter(Image, Text) In this tutorial you will learn how you can save a file locally. Flutter has a built in type called File which will allow us to read and write to a file locally. To make our lives easier we do need to add a package, the path_provider package, which
Flutter How to remove debug banner with Flutter In this tutorial you will learn how to remove the debug banner from your Flutter app. I find this debug banner to be quite annoying but luckily there is a one line fix for it. To remove the debug banner set the following property on your MaterialApp widget: debugShowCheckedModeBanner: false,
Flutter Change button color on press with Flutter In this tutorial I will show you how you can change the color of a button when a user presses it. To demonstrate this I will be using a RaisedButton. Toggle button color change on press class _MyHomePageState extends State<MyHomePage> { // 1 bool _hasBeenPressed = false; @override Widget build(