Discover articles by topics
Android Dart Deployment Design Development Flutter iOS Testing UI Uncategorized
Latest articles and tips
- Deploying the Flutter app on the App StoreDeploying the Flutter app on the App Store is an easy process that takes some work, your app can reach a wide audience of iOS users who can easily download and install it on their iPhones or iPads. This enables your app to provide valuable …
Continue reading “Deploying the Flutter app on the App Store”
- How can I add item number on the cart icon on AppBar icon in FlutterHaving a shopping cart icon on the right side of the AppBar on Flutter it’s not that hard, you can use basically a stack widget and inside the stack get IconButton and Positioned widgets. Here is the code and screenshot
- Download PDF in Flutter using Java on AndroidLearn how to make an Android native call from Flutter Downloading PDF files in the user download directory on Android is a widespread feature, a lot of apps use PDF viewing and downloading features. I hoped that flutter plugins could solve my problem but they …
Continue reading “Download PDF in Flutter using Java on Android”
- API testing in FlutterIt is very common to use API in our Flutter projects. Testing makes the Flutter project very easy to maintain, in this way you will save a lot of debugging time. Also when you have testing in place you can always check whether API working …
- How to add your ssh key to GitHub on your Mac
- Call swift native code from FlutterLearn how to make a Swift native call from Flutter In this tutorial, we are going to call a simple swift method of AppDelegate.swift file from flutter. Let’s create a brand new flutter app by running the following command on your terminal Delete everything inside …
- How to change the status bar color in Flutter, Android onlyChanging the status bar color is very easy in Flutter. There are a few ways to do this. Globally in the main function 2. Globally in the MaterialApp widget in ThemeData 3. AppBar only
- While loop in dart flutterCheck for loop here
- For loop in dart flutterStandard for loop. Print i value fives times. Check while loop
- Generate Google Play Badge IconTo generate a Google Play badge icon, you can visit the Google Play badge generator on the Google Developers website. This tool allows you to customize the appearance of the badge by selecting various options such as badge size, language, and app type. Once you …
- Free Flutter App Icon – Apple Home AppDownload Source File
- Create zip file in dartCreating a zip file in Dart is not that hard. Though there are not many packages right now to work with, so far we have only two packages which we can use to create zip, tar and others in dart. If you have not installed …
- Flutter app design resources for iOS and AndroidList of flutter app design resources iOS Design Resources Download SF Symbols iOS 14 and iPad OS 14 Sketch Library iOS 14 and iPadOS 14 Sketch Kit iOS 14 nad iPad OS 14 XD Kit iOS 14 nad iPad OS 14 Photoshop Kit iOS 13 …
Continue reading “Flutter app design resources for iOS and Android”
- Install flutter mac by HomebrewFlutter is easier to install on any Mac, just install it by Homebrew. It will install both flutter and dart. Check the version of Flutter Check the version of Dart
- MySQL and Maria DB connection with Dart languageConnecting to a MySQL or Maria DB server from Dart is very easy. We need just one package. The package we need is ‘mysql1’ which provides a MySQL client library for Dart. This package allows us to establish a connection with a MySQL server and …
Continue reading “MySQL and Maria DB connection with Dart language”
- Hello World in Dart Programming LanguageRead here if you haven’t yet install Dart in your system. Install Dart SDK on Mac, Windows and Linux. Download Visual Studio code for your OS. Install Dart plugin in your Visual Studio Editor. Just search Dart on your extensions page. Now run this command …
- Reading CSV file by DartDart Installation Reading CSV files in Dart language is easy. Make sure you have already installed Dart SDK, follow this tutorial if you haven’t Install Dart SDK on Mac, Windows and Linux Plugins For this tutorial, we are going to use the Dart plugin on …
- Install Dart SDK on Mac, Windows, and LinuxInstalling the Dart SDK on Mac, Windows, and Linux involves different steps for each operating system. Below are instructions for each platform: Mac: Windows: Linux: After installing the Dart SDK, you can verify the installation by running dart –version in the terminal/command prompt, which should …
Continue reading “Install Dart SDK on Mac, Windows, and Linux”
- Create your first Flutter LayoutIn this article, we are going to create a Flutter Layout from existing source code which gets generated by fluter create command. If you have not created your Flutter project read this Create your first Flutter project Our final goal is to create a layout which …
- Create your first Flutter projectTo create your first Flutter project on Mac you just need your terminal and editor, we are going to use Visual Studio Code with Dart Code Plugin. If you haven’t installed Flutter Framework, please follow this tutorial How to install Flutter on Mac. 1) Open …
- How to install Flutter on MacInstall Flutter by Homebrew on Mac Flutter is easier to install on any Mac, just install it by Homebrew. It will install both flutter and dart. brew install flutter Check the version of Flutter flutter –version Check the version of Dart dart –version If you …