Learn 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 the method _incrementCounter() on your main.dart file and make it …
Category Archives: Flutter
How to change the status bar color in Flutter, Android only
Changing 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
Install flutter mac by Homebrew
Flutter 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
Create your first Flutter Layout
In 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 looks like this. Showing person name, picture, and bio. Download …
Create your first Flutter project
To 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 the terminal on your Mac and cd to the directory …
How to install Flutter on Mac
Install 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 are looking for instructions for Windows or Linux, please click …