This is the second part of the AWS Amplify for Flutter article series. To learn about Amplify and its initialization process, make your way through Part 1, which will also help you grasp a better understanding of this article. DataStore Library DataS... https://techblog.geekyants.com/aws-amplify-for-flutter-part-2-amplify-datastore
Hello, I am more of a programmer than a content writer. In this tutorial, ‘am gonna put some simple and easy tricks I have learned so far. Let’s get this started. Increment Build Number/Version Code Automatically
This is purely based on the number o... https://trinadhkoya.in/increment-build-number-in-a-smart-way
Introduction Hello there! Its the beginning of my 2 week vacation and once again i sit in front of the computer ONE day after the last working day. But why? Because i love coding! I love to code, write about coding and even smell code. Today i want t... https://danysdevcorner.hashnode.dev/why-i-freakin-love-coding
Hey Gang, Here I am going to share my thoughts on why I started using flutter for coding mobile apps. This is just my personal opinion based on my learning and experience so far. Background: I am basically an iOS developer, coding using swift and had... https://kevinvishal.hashnode.dev/why-i-chose-flutter-for-building-apps-a-native-ios-developer-perspective
As you maybe already know, the flutter's 2.0 stable channel already integrates the feature of building apps for desktop, but it stills in beta, you have to consider that. In this post, I'm going to show you how to generate the build for Windows and c... https://blog.imjulian.com/how-to-publish-your-flutter-app-on-windows-the-easy-way
You will need Flutter set up on your machine. This tutorial assumes you are using Visual Studio Code for development. DEMO Here is the final output of the Signup screen which we are going to develop
BUILD THE UI Open the file ..lib/main.dart main.da... https://letsflutter.in/shopping-app-part-1
As you maybe already know, the flutter's 2.0 stable channel already integrates the feature of building apps for desktop, but it stills in beta, you have to consider that. In this post, I'm going to show you how to generate the build for Windows and c... https://blog.imjulian.com/how-to-publish-your-flutter-app-for-windows-the-easy-way
Hello everyone, Today I'll show you how we can implement local push notification from a flutter app. Implementation We will use a package called flutter_local_notifications . Add the following to your pubspec.yaml file: dependencies: .... flutte... https://blog.bibekkakati.me/local-push-notification-in-flutter
Not so far ago we have started a Brand New publication called LITSLINK. There a lot of accomplishing work we did and a lot of interesting articles that we wrote to share information with you. This time publication has articles and stories related to ... https://hashnode.alexmelnyk.io/brand-new-publication
What is a singleton pattern? Singleton pattern is a design pattern that allows us to use a single instance of a class everywhere. Implementation class ClassName { static ClassName _className;
ClassName._createInstance();
factory ClassNa...
https://blog.bibekkakati.me/implementing-singleton-pattern-in-dart-flutter