Category: flutter
-
How to build your package for Flutter?
Just like any other platform, there would be time when you created a piece of code that you may want to use in multiple projects of yours but you do not want to copy paste the code. Because copy pasting will raise several problems, one of which is fixes in that piece of code. If…
-
REST API Calls in Flutter using Dio
How to make Flutter REST API calls using Dio? GET and POST calls with headers.
-
How to upload to DigitalOcean & Amazon S3 Spaces using Flutter?
For many of the app developers, you may not use your server for storage purposes where you make your API calls. It could be because the storage is expensive, the load on the server would be more when you would like to stream videos or you are using a server less (functions) technology. For such…
-
How to download files in Flutter? And read.
From now and then, you might be building an app where you need to download a file or two from the internet, store it locally and then display it on the phone. Let\’s say, a chat application would require the videos, images, audios for that purpose. What to do then? Flutter has the capability to…
-
Flutter Google Maps and Location
Google Maps in Flutter with current location and fetch user selected location.