Here is my presentation and prepared text for the lecture ” Flutter vs Java GUI (Graphical User Interface) Frameworks ” – given at http://polyglot4dev.com/ presented in the summer of 2022. In this post I’ll try to tell stuff that I didn’t managed to say, write, or emphasise before. Flutter vs Java Graphical User Interface Frameworks…
Tag: flutterdev
How to pinch Flutter to your Manager
If you want to persuade your manager to use Flutter for your next mobile app development project, here are a few points you might consider: By highlighting the benefits of Flutter, you can help convince your manager that it is the right choice for your next mobile app development project. It may also be helpful…
Why Choose Flutter Framework for CTO
As a CTO, you have a lot of responsibilities and must make many important decisions about the technology and tools your team uses and if you target mobile – One framework that you may want to consider is Flutter, a cross-platform mobile app development framework created by Google. As part of Google – this may…
Public / Private Key Cryptography – Use Cases – Examples
Public / Private Key Cryptography is the core that allows the Internet to function. If I must use the metaphor from IT Crowd – if there is any “Internet Box” – it is the hash & crypto math. Use Cases HTTPS / SSL HTTPS/SSL allows any user to communicate with the servers – with a…
What are the Problems with Flutter Web?
As any other Platform, Flutter Web also has several problems. You can compare Flutter to a Swiss knife – that is hitting all places, but not always in a perfect way. It will minimize the work in some use cases, but it may increase or do not-optimally in another place. VMs – Virtual Machine inside…
Flutter Bloc List Network
Here is the evolution of my personal – first – on-hand experience – with Flutter Bloc List Network example that uses different techniques and approaches. I’ve used a product that I’m developing – that is available for sell – with different variations. My goal is to include an app version in the near future. Before…
Flutter Bloc Minimal List – 4
In this post I’ll continue my previous one and go into Flutter Bloc Minimal List app/view. You could see the code here: https://github.com/tomavelev/dev_examples/tree/master/bloc/lib_bloc_minimal_list. There are not that many differences, but, here are the ones nonetheless: Minimal List What more minimal a list could be – a one located in the memory. I’ve stored it inside…
Minimal Flutter Bloc App from scratch – 3
In this article I’ll explain the code of the Minimal Flutter Bloc App – version of an App that I’m building. Partial snippets you could see here: https://programtom.com/dev/2022/01/07/portfolio-platform-flutter-app-2-code-structure/. The full – working – minimal code you could copy from here: https://github.com/tomavelev/dev_examples/blob/master/bloc/lib_minimal_bloc/main.dart It’s a lot of times a good idea to complete the whole process of…
Portfolio Platform Flutter App – 2 – Code Structure
Here you have some code snippets of my Portfolio Platform Flutter App. I’ve written about the architecture and the software development approach in the previous post. The full code will be available in this package: https://programtom.com/dev/product/portfolio-platform-php some time in the future (currently 07.01.2022 – not). I’ll publish several versions between the beginning and the version…
Portfolio Platform Flutter App – 1 + BLOC & Overview
In this article I’ll extend my Portfolio Platform package with a mobile front end using the Flutter Framework with the bloc state management that is very semantic. It will output fully cross platform applications and I’m going to also try to learn a new stack. I’ll use the rx_bloc library. Finite State Machine All libraries,…