Have an amazing solution built in RAD Studio? Let us know. Looking for discounts? Visit our Special Offers page!
CodeDelphi

How To Add The Wow Factor To Your Apps

How To Add The Wow Factor To Your Apps

It’s a lot of fun being an Embarcadero Delphi MVP. On behalf of Embarcadero, I get to demonstrate the benefits of what I think is the best application builder software you can choose to use. But I also get invited to speak at other conferences, webinars and events by a wide range of user groups, resellers and tech partners too. I spoke at such an event earlier this week held by tech partner Softacom. I got to choose my topic so I decided to talk a little about how RAD Studio with Delphi can really inject some wow factor into your apps. The replay of the talk is not online yet, but I will update this blog post when it becomes available.

This short 15-minute webinar session is actually a little preview of my upcoming hour-long session on Thursday November 3rd 2022.

Is there a replay of the “How To Add The Wow Factor To Your Apps” webinar?

Yes, here is the replay of the short webinar. The longer one hour webinar is detailed in another article. I will put the link to it in here when it has finished being processed.

How To Add The Wow Factor To Your Apps – what was it all about?

The session discussed a few free resources which you can use to add some visual beauty to your apps. The slides below list the full session. The main takeaway was how easy it is to create powerful cross platform apps using Delphi which work great and have all the bells and whistles of a modern, good-looking user interface. Apps do not have to be ‘slabs of gray’. The key properties of a modern user interface are motion, color, depth and responsive design.

Where can I see a good example of an app with the wow factor?

The weirdest thing is that on nearly every operating system, whether it is desktop or mobile, the weather apps nearly always have used every single trick and technique in the book. If you think about it though, there is a lot we can learn from a weather app because they are essentially dashboard apps – programs designed to pull in time-sensitive data from the internet and then display it in a variety of ways to make that (often quite diverse) data readily understandable in the most succinct and attractive way possible.

What was my Delphi weather app example like?

I showed a Delphi app built using just FireMonkey and Skia4Delphi. It looks gorgeous – even though I say so myself – and manages to do so with almost nothing other than the standard capabilities of the Delphi RTL and FireMonkey FMX. I did make use of the free Skia4Delphi components and some Lottie animations. I also pulled in some free SVGs to make a plausible graphical display.

How To Add The Wow Factor To Your Apps Ian's example app

What code was required to make the sample app work?

I mainly used the built-in event-driven animation effects of FireMonkey to automatically drive the Opacity value of some controls – and to make things slide pleasingly into place. This is the depth and motion part of good modern UI design.

How To Add The Wow Factor To Your Apps create a new float animation
I selected the elements I wanted to animate or to affect
How To Add The Wow Factor To Your Apps the float animation in the RAD Studio structure view
By clicking create new float animation I get a new item in the structure view
How To Add The Wow Factor To Your Apps changing the properties of the animation effect
and I can then change the properties particularly the <code>Trigger<code> <code>Duration StartValue<code> <code>StopValue<code> and <code>PropertyName<code>

These all have the effect of making things happen to the parent control when the trigger value’s expression evaluates to true. In the example above, Delphi and FireMonkey FMX change the opacity value from 1 (not transparent) to 0 (totally transparent) when the parent control becomes visible. The animation or conversion takes 2 seconds to run. This translates to the animation appearing to fade away. Simple, when you know how.

Was there any code in the background of the wow app example?

Well, I did have to write a small amount of code to make things happen in a set sequence. I also used a thread to trigger part of the process after a delay of 1 second – just enough time for the user to see the ‘sunrise’ animation after it had completed. The use of a thread means the app stays responsive while we’re waiting for the animations to finish.

Here is the full example code for the example wow app

Note that the full source is available here: https://github.com/checkdigits/wow_app_example

Here’s a partial listing of the relevant bits.

Where can I learn more about Delphi, FireMonkey and other app UI design tips?

Register for the webinar or watch it on replay if you’re reading this after Thursday November 3rd, 2022. The upcoming webinar goes into much more depth and shows several example programs which demonstrate a whole load of tips and tricks for making good-looking apps with modern user interfaces.

Where can I find the slides from the “how to add the wow factor to your apps” webinar?

They are below.

How To Add The Wow Factor To Your Apps slide1 4
<strong>How To Add The Wow Factor To Your Apps Slide 1<strong>
How To Add The Wow Factor To Your Apps slide2 3
<strong>How To Add The Wow Factor To Your Apps Slide 2<strong>
How To Add The Wow Factor To Your Apps slide3 3
<strong>How To Add The Wow Factor To Your Apps Slide 3<strong>
How To Add The Wow Factor To Your Apps slide4 5
<strong>How To Add The Wow Factor To Your Apps Slide 4<strong>
How To Add The Wow Factor To Your Apps slide5 3
<strong>How To Add The Wow Factor To Your Apps Slide 5<strong>
How To Add The Wow Factor To Your Apps slide6 3
<strong>How To Add The Wow Factor To Your Apps Slide 6<strong>
How To Add The Wow Factor To Your Apps slide7 3
<strong>How To Add The Wow Factor To Your Apps Slide 7<strong>
How To Add The Wow Factor To Your Apps slide8 3
<strong>How To Add The Wow Factor To Your Apps Slide 8<strong>
How To Add The Wow Factor To Your Apps slide9 2
<strong>How To Add The Wow Factor To Your Apps Slide 9<strong>
How To Add The Wow Factor To Your Apps slide10
<strong>How To Add The Wow Factor To Your Apps Slide 10<strong>
How To Add The Wow Factor To Your Apps slide11
<strong>How To Add The Wow Factor To Your Apps Slide 11<strong>

Reduce development time and get to market faster with RAD Studio, Delphi, or C++Builder.
Design. Code. Compile. Deploy.
Start Free Trial   Upgrade Today

   Free Delphi Community Edition   Free C++Builder Community Edition

About author

Ian is the Embarcadero Developer Advocate, a professional writer, presenter, and host. He is a prolific software developer, voice actor, designer and poet. Ian is British American, born in London, now living in Dallas, Texas. "I get up early every day and write code".

Leave a Reply

This site uses Akismet to reduce spam. Learn how your comment data is processed.

IN THE ARTICLES