python and flutter — writing a very simple markdown demo in flet

This came across my radar entirely by accident. Someone or a group of someones out there has added Python wrappers around Google’s Flutter ( https://flutter.dev ) and called it flet ( https://flet.dev ). If you have Flutter installed already (and I have version 3.3.10, which is current) you can install the Python Flutter module with pip install flet, and then start writing desktop applications with it. I came across this application example here: https://betterprogramming.pub/building-a-markdown-editor-previewer-with-flet-7d9b06d6dc4b . I typed it all in myself, and here is my copy of the original author’s listing.

#!/usr/bin/env pythonimport fletdef main(page: flet.Page):page.title = "Markdown Editor"page.theme_mode = "dark"def update_preview(event):markdown.value = text_field.valuepage.update()page.appbar = flet.AppBar(title = flet.Text("Markdown Editor", color=flet.colors.WHITE),center_title = True,bgcolor = flet.colors.BLUE,)text_field = flet.TextField(value = "# Hello from Markdown",multiline = True,expand = True,height = page.window_height,border_color = flet.colors.TRANSPARENT,on_change = update_preview)markdown = flet.Markdown(value = text_field.value,selectable = True,extension_set = "gitHubWeb",  on_tap_link = lambda event: page.launch_url(event.data),)page.add(flet.Row(controls=[text_field,flet.VerticalDivider(color=flet.colors.RED),flet.Container(flet.Column([markdown], scroll = "hidden",),expand = True,alignment = flet.alignment.top_left,)],expand = True,))flet.app(target = main)

For testing purposes I used this page for the examples on the left of the application: https://www.markdownguide.org/cheat-sheet/ . Although the author called this an editor, it’s missing quite a bit of functionality, such as the ability to open and save your work. Right now it’s just a proof of concept that shows how easy it is to write GUI applications in Python and Flutter, and a way to exercise flet’s built-in Markdown module (see lines 28 to 33). The only problem so far is that Flutter is spitting out a warning message when the Markdown demo application is closed, but other than that it appears to be a decent little demo.

Will I add more functionality? Who can say? Right now I’m working with Qt 6.2 and C++, but the fact this is written with Python is a very strong draw to me. I do think this is very cool.

notes on installing flutter 3 on pop!_os 22.04

I’ve been on-and-off of Google Flutter ever since version 1 was released. I never considered the tools or the final results all that polished. But hope springs eternal so I installed Flutter 3 (see https://docs.flutter.dev/get-started/install/linux ), the latest release. I’ve installed Flutter on my basic AMD system running Pop!_OS 22.04, which is essentially Ubuntu 22.04. I’m doing this because I don’t run Windows anymore and I want to keep Flutter off of macOS (I have enough going on with my macOS systems). It’s also going on my Linux system because Google claims they worked directly with Canonical to develop this latest Flutter version, so I’m curious to see how it all works. Before we get started, I advise you download and install Android Studio ( https://developer.android.com/studio ). You can use that to install and manage the Android SDK. In particular, you need to install the Android SDK Command Line Tools, which Android Studio’s built-in SDK Manager ( Tools | SDK Manager ) will allow you to do. In particular, you need to go to the SDK Tools tab and make sure to select and install Android SDK Build-Tools (latest).

Figure 1: Reached by Tools : SDK Manager that is also reachable from Files | Settings and navigating as shown to Android SDK

I can assure you that if you do not have the latest tools, and you have a Java version later than Java 8, then a part of flutter doctor will fail when you try to use flutter to accept the Android SDK licenses. It’s confusing, but for whatever reason those licenses are not set when you install the Android SDK either from the command line or via Android Studio. The problem is that the older sdkmanager command line tool expects to work only with Java 8 (and why that is is to convoluted for this short post, but trust me, it will fail). So make sure you use Android Studio’s SDK Manager section to install those latest tools.

Once all the bits are in place, this is what you will see with a proper doctor report.

Of interest to me is how this will work developing tools for Ubuntu-based Linux distributions. There’s another feature that’s piqued my interest I want to try, and that’s developing on a Chromebook under Chrome OS. That adventure can wait until I get some time with Flutter 3 on Linux.