Tag: FlutterTipsTricks

  • Flutter Tips Tricks #07: iPhoneX Simulator Screenshots (13 Sep 2019)
    In the last tip, I mentioned that iOS Simulator screenshots and screen captures can be taking using the terminal commands

  • Flutter Tips Tricks #06: Device Screen Capture (12 Jul 2019)
    If a picture is worth a thousand words, then a video can be practically priceless in demonstration an app’s feature to colleagues, clients etc. Lets find out how to capture videos from mobile devices.

  • Flutter Tips Tricks #05: Change Package Name/Bundle Id (27 May 2019)
    By default, when a new Flutter project is created, the package name (Android) and Bundle Id (iOS) is automatically set to com.example.app_name and com.example.appName respectively. When releasing on the store, we need to specify our own custom identifiers (generally reverse domain notation).

    Android


  • Flutter Tips Tricks #04: Importing Packages (24 May 2019)
    Any package hosted on pub.dev can be easily imported into a Flutter project by listing it as a dependency in pubspec.yaml:

  • Flutter Tips Tricks #03: Specify Device Orientation (13 May 2019)
    By default, Portrait, Landscape Left and Landscape Right orientations are supported when a Flutter project is created. If you would like to specify the supported orientations for the duration of an app’s lifecycle, this can easily be achieved in one of two ways.

  • Flutter Tips Tricks #02: Global Launch Configurations (06 May 2019)
    In VS Code, a Flutter app can easily be ran in debug mode on a device by pressing F5. However, what about release or profile mode?

  • Flutter Tips Tricks #01: Hello World Code Snippet (29 Apr 2019)
    When we create a new Flutter project, the standard starter app, in which the user can click a button and the onscreen count text is updated, is generated. Although this is a nice introduction to Flutter and hot reloading, I always find myself needing to delete most of this boilerplate code or starting from scratch. Wouldn’t it be great if there was someway to easily create an Hello World code snippet for main.dart?