$schemamarkup = get_post_meta(get_the_ID(), 'schemamarkup', true); if(!empty($schemamarkup)) { echo $schemamarkup; }

GNU/Linux Flutter Hello World on Android App

August 14, 2023 | By the+gnu+linux+evangelist.

Running

  1. 2. Installing Android Studio

    How to Install Android Studio on GNU/Linux

    Android Studio Linux Setup Guide
  2. 3. Setting up to Run App on Android

    Now Connect Android Device/Emulator
    If not already done see: How to Enable USB Debugging.
    Else, if you miss of an available Android device see instead: How to Run on Emulator.
    After connecting by the USB Cable, confirm to “Allow“:

    Allow access

    Then Open a File Manager and try to access your Device Storage.
    In any case after that Android Studio or another supported IDE like VSCodium is running you should be Prompted again about to give Permission for debugging.

  3. 4. Installing Flutter Plugin

    Now Install Flutter Plugin
    Open Settings:

    Settings

    Then Plugins:

    Plugins

    And Install Flutter:

    Flutter Plugin
  4. 5. Making Flutter App

    Create a New Flutter App
    Access File >> New >> New Flutter Project:

    Create Flutter Project

    From the Generators choose Flutter
    Possibly Check the SDK Path:

    Generator flutter
    Next Set at least the Name:

    Setting up flutter app
  5. 6. Running Flutter App

    Finally, Run Android Studio Flutter App
    Choose the little Play like Arrow on the Top Toolbar:

    blank

    Moreover, Android Studio provide of the very useful Hot Reload Feature:

    Hot Reload

    For further Insight see the Official Documentation.
    And so then the UI is displayed on your Device:

    Hello world flutter app

    Congratulations! :)

  6. 7. Flutter Getting-Started Guide

    Getting-Started with Flutter for GNU/Linux

    Flutter QuickStart Tutorial

Contents