CMake Cross-Compiling Template

cmake cross-compile for dummies

Most of the C/C++ developers are running into it: The need to cross-compile your C/C++ code for multiple targets (e.g. ARM, x86, …). Anyhow, you may know that this might be very frustrating. Therefore, I want to explain you short and easy how to cross-compile your program e.g. for ARM with CMake, short: A CMake …

Read more

Cupertino Date Textbox

cupertino date textbox

In this article I want to explain you shorty, how you can achieve a Cupertino Date Textbox with Flutter. You can use this widget in e.g. a form within your app. Let’s explain it with an example: The next steps will explain you how to create a birthday selection with a cupertino date box: 1. …

Read more

Settings Page with Flutter

flutter settings page

Every app needs it: A settings page. This tutorial explains how to create a settings page with flutter easily by using the library cupertino_setting_control. Cupertino Setting Control supports multiple input methods (e.g. dropdown, textfield etc.) as well as multiple configuration options concerning look and feel (e.g. where the title shall be displayed) and style options …

Read more

Cupertino Radio Buttons

cupertino radio buttons

In this article I want to explain you shorty, how you can achieve Cupertino Radio Buttons with Flutter. You can use these buttons to select one out of multiple options, e.g. to select a gender. Let’s explain it with an example: The next steps will explain you how to create a gender selection with cupertino …

Read more

ListView Lazy Loading in Up and Down Direction

You want to create a ListView in flutter with lazy loading in up and down direction with boundaries? Example: You want to display a scoreboard with 100.000 entries and want to start displaying items from 50.000. New entries should load automatically if scrolling up or down until entry 0 or entry 100.000 is reached (boundaries). …

Read more