Mobile application developers constantly seek innovative methods to craft apps that resonate across diverse platforms. This quest has given rise to cross-platform mobile development, a strategy aimed at creating applications capable of seamlessly operating on various platforms, such as iOS and Android, utilizing a unified codebase. Unlike conventional native development, which necessitates separate coding for each platform, cross-platform development simplifies …
Flutter Essentials: Strategies for Collapsible Text in Flutter
As a mobile developer, I have had to create a lot of listing pages. The content, styling, and layout may all differ, but structurally, they are the same. When I first started using Flutter, I was immediately impressed by how fast they are to stand up. Nearly out of the box, the ListView and the Card work extremely well and support a wide variety of devices and use cases with no additional styling – all while remaining extensible.
With this in mind, when I needed to create a listing page that displayed variable lengths of pre-generated text that could be expanded and collapsed, I was not particularly concerned about the complexity of the task. However, I very quickly realized that Flutter is less optimized for handling large blocks of text than it is for displaying lists. I quickly encountered unexpected complexities that I had to manually account for. In this post, I’ll walk through the basic structure and explore which components can be used for solving this problem and creating collapsible text in Flutter.
KeyholeSoftware.Dev Releases Mobile KHS Guitar Tuner Pro
The KeyholeSoftware.dev team is proud to announce the launch of a new mobile application, a cross-platform Flutter app that assists guitarists with a variety of different tuning setups called KHS Guitar Tuner Pro. With its versatile features and user-friendly interface, this application is a vital tool for musicians of all skill levels.
The Flutter-based, mobile application is now available for download on the Apple App Store and Google Play Store. Download it and begin using the tool for free today.
KeyholeSoftware.Dev Releases Mobile KHS Guide Diary App
The KeyholeSoftware.dev team is proud to announce the release of a new mobile application, KHS Guide Diary, a cross-platform Flutter app that enables documentation of fishing trips.
KHS Guide Driay app enables precise documentation of fishing trips by recording images, trip descriptions, environmental conditions, and any income and expenses associated with the trip. KHS Guide Diary allows users’ trips to be viewed, sorted, and searched from the main listing page. Trip information can also be downloaded and shared on social media.
Automating Flutter Deployments: Part 3 – Configuring CircleCI
Recently, I’ve worked on automating some internal processes for building and releasing Flutter applications. Part of this effort included utilizing Fastlane with a Continuous Integration/Delivery platform to build and deploy the app. This blog post will outline the process I followed to run the build on CircleCI after I had configured Fastlane to build and deploy the application from my local machine.